Why am i getting 'Unknown field 'embedding' in vector field list.' exception? #899
-
hello i am using kernel memory to implement RAG with Azure AI Search, when i am calling KernelMemory.AskAsync(...) the follwoing exception is thrown. Could you kindly advise why exception is thrown?
this is my setup
program.cs
|
Beta Was this translation helpful? Give feedback.
Answered by
dluc
Nov 18, 2024
Replies: 1 comment 4 replies
-
hi @PanClifton - did you import some data or are you working with an empty db? any chance you might be reusing an index created by some other application? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @PanClifton,
Kernel Memory automatically manages indexes with a specific schema and set of fields, so it’s likely that the other application’s index uses a different, incompatible schema.
To import files from blob storage, you can use the ImportDocument API and upload the files directly.