|
First, thanks for the great work! I can use my Azure AI just fine and it's working well! However, since we are using an Azure Search index (RAG) holding documents/information for the AI to use, I cant find a way to add this to the configuration. Essentially, the following needs to be added to the request body sent to Azure AI: "data_sources": [
{
"type": "azure_search",
"parameters": {
"filter": null,
"endpoint": "https://xxx.search.windows.net",
"index_name": "xxx",
"project_resource_id": "xxx",
"semantic_configuration": "azureml-default",
"authentication": {
"type": "system_assigned_managed_identity",
"key": null
},
"embedding_dependency": null,
"embeddingEndpoint": "xxx",
"embeddingKey":"xxx",
"query_type": "vectorSimpleHybrid",
"in_scope": false,
"role_information": "You are an AI assistant.",
"strictness": 5,
"top_n_documents": 20,
"key": "xxx",
"indexName": "xxx"
}
}
]Is there an easy way to add this? |
Replies: 2 comments 9 replies
|
Hello @ThoSt81 I haven't used Azure AI Search yet and can't help with the details. Theoretically, I could implement additional fields to add a custom body field. But then it would be defined for all configured models. I don't know how helpful this would be. |
|
I had Copilot write the extensions. Can you test it and give me some recommendations? Many new variables have been defined. |
I've never had this problem before.
Does it affect both API keys or just one?
Is it possible that you haven't set the
WEBUI_SECRET_KEYvariable, which is preventing the encryption from working correctly?