You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying to use Azure AI Search import and vectorize data wizard (from the portal) with the app.
It seems that the wizard is quite opinionated on the name of index fields it uses when
creating the index, which makes it incompatible with the app, unless you make changes to
the code and use the same names. Am I missing something or am I correct in my assumption?
thank you.
The text was updated successfully, but these errors were encountered:
You probably want id to be "chunk_id", and also for sourcepage and sourcefile to be "chunk_id", as I've been told that field contains the filename. You need filenames for citations to work. The embedding field should be "text_vector", I think. The rest of the fields are optional and don't need updating.
Change this line of code in approach.py to "text_vector" (or whatever your embedding field is called) -
I was trying to use Azure AI Search import and vectorize data wizard (from the portal) with the app.
It seems that the wizard is quite opinionated on the name of index fields it uses when
creating the index, which makes it incompatible with the app, unless you make changes to
the code and use the same names. Am I missing something or am I correct in my assumption?
thank you.
The text was updated successfully, but these errors were encountered: