|
1 | 1 | # Environment variables for the deploying AI Search Indexes |
| 2 | +IdentityType=<identityType> # system_assigned or user_assigned or key |
2 | 3 | FunctionApp__Endpoint=<FunctionAppEndpoint> |
3 | 4 | FunctionApp__Key=<FunctionAppKey> |
4 | 5 | FunctionApp__AppRegistrationResourceId=<App registration in form api://appRegistrationclientId if using identity based connections> |
5 | | -IdentityType=key # system_assigned or user_assigned or key |
| 6 | + |
| 7 | +# Open AI Connection Details |
| 8 | +OpenAI__ApiKey=<OpenAIKey> |
| 9 | +OpenAI__Endpoint=<OpenAIEndpoint> |
| 10 | +OpenAI__EmbeddingModel="text-embedding-ada-002" |
| 11 | +OpenAI__EmbeddingDeployment="text-embedding-ada-002" |
| 12 | +OpenAI__EmbeddingDimensions=1536 |
| 13 | + |
| 14 | +# Azure AI Search Connection Details |
6 | 15 | AIService__AzureSearchOptions__Endpoint=<AzureSearchEndpoint> |
7 | 16 | AIService__AzureSearchOptions__Identity__ClientId=<clientId if using user assigned identity> |
8 | | -AIService__AzureSearchOptions__Key=<AzureSearchKey> |
| 17 | +AIService__AzureSearchOptions__Key=<AI search key if using non identity based connection> |
9 | 18 | AIService__AzureSearchOptions__UsePrivateEndpoint=false |
10 | 19 | AIService__AzureSearchOptions__Identity__FQName=<fully qualified name of the identity if using user assigned identity> |
| 20 | + |
| 21 | +# Azure Storage Account Connection Details |
11 | 22 | StorageAccount__FQEndpoint=<Fully qualified endpoint in form ResourceId=resourceId if using identity based connections> |
12 | 23 | StorageAccount__ConnectionString=<StorageAccountConnectionString> |
13 | | -OpenAI__ApiKey=<OpenAIKey> |
14 | | -OpenAI__Endpoint=<OpenAIEndpoint> |
15 | | -OpenAI__EmbeddingModel="text-embedding-ada-002" |
16 | | -OpenAI__EmbeddingDeployment="text-embedding-ada-002" |
17 | | -OpenAI__EmbeddingDimensions=1536 |
| 24 | + |
| 25 | +# Image Processing Index Specific Configurations |
| 26 | +StorageAccount__ImageProcessing__Container=<ImageProcessingContainer> |
| 27 | + |
| 28 | +# Text2Sql Index Specific Configurations |
18 | 29 | Text2Sql__DatabaseEngine=<DatabaseEngine> |
19 | | -StorageAccount__RagDocuments__Container=<RagDocumentsContainer> |
20 | 30 | StorageAccount__Text2SqlQueryCache__Container=<Text2SqlQueryCacheContainer> |
21 | 31 | StorageAccount__Text2SqlSchemaStore__Container=<Text2SqlSchemaStoreContainer> |
22 | 32 | StorageAccount__Text2SqlColumnValueStore__Container=<Text2SqlColumnValueStoreContainer> |
0 commit comments