Do you have plan to support AWS services? #600
Replies: 3 comments
-
hi @tonyqus we might not have any short term plan, but the memory builder allows to plug in custom implementations, so I would suggest developing that and similar extensions as nugets, adding the corresponding |
Beta Was this translation helpful? Give feedback.
-
how about the TextGenerations? i was able to reuse my custom classes that i use with SK. that's nice that the interfaces are the same but i'm getting some weirdness. at each memory.ImportDocumentAsync, i see the embedding results from my GenerateEmbeddingsAsync implementation. i'm assuming the kernelMemory has some built-in storage behind the scenes because i'm not explicitly calling it here like i would in SK. so my questions are:
i implemented it like this:
but i get the error: INFO NOT FOUND |
Beta Was this translation helpful? Give feedback.
-
hi @curlyfro
that's correct. When importing a document, the text is exported, chunked, and for each chunk an embedding is generated with
The text generator is used in 2 places:
That's correct. The system generates an embedding of the question, in order to find similar chunks. The question is passed to the embedding generator, and then the system searches the vector DB for similar embeddings.
It really depends on the content of your files and the question. Here's some options:
|
Beta Was this translation helpful? Give feedback.
-
For example, content storage with AWS S3?
Beta Was this translation helpful? Give feedback.
All reactions