|
141 | 141 | // - Auth is the authentication type: "APIKey" or "AzureIdentity".
|
142 | 142 | // - APIKey is the key generated to access the service.
|
143 | 143 | // - Endpoint is the service endpoint url.
|
144 |
| - // - Deployment is a completion model (e.g., gpt-35-turbo, gpt-4). |
| 144 | + // - Deployment is a completion model (e.g., gpt-4, gpt-4o). |
145 | 145 | // - APIType is the type of completion model: "ChatCompletion" or "TextCompletion".
|
146 | 146 | // - MaxRetries is the maximum number of retries for a failed request.
|
147 | 147 | //
|
148 | 148 | "AzureOpenAIText": {
|
149 | 149 | "Auth": "ApiKey",
|
150 | 150 | //"APIKey": "", // dotnet user-secrets set "SemanticMemory:Services:AzureOpenAIText:APIKey" "MY_AZUREOPENAI_KEY"
|
151 | 151 | "Endpoint": "",
|
152 |
| - "Deployment": "gpt-35-turbo", |
| 152 | + "Deployment": "gpt-4o", |
153 | 153 | "APIType": "ChatCompletion",
|
154 | 154 | "MaxRetries": 10
|
155 | 155 | },
|
|
158 | 158 | // - Auth is the authentication type: "APIKey" or "AzureIdentity".
|
159 | 159 | // - APIKey is the key generated to access the service.
|
160 | 160 | // - Endpoint is the service endpoint url.
|
161 |
| - // - Deployment is a embedding model (e.g., gpt-35-turbo, gpt-4). |
| 161 | + // - Deployment is an embedding model (e.g., text-embedding-ada-002). |
162 | 162 | //
|
163 | 163 | "AzureOpenAIEmbedding": {
|
164 | 164 | "Auth": "ApiKey",
|
|
168 | 168 | },
|
169 | 169 | //
|
170 | 170 | // AI completion and embedding configuration for OpenAI services.
|
171 |
| - // - TextModel is a completion model (e.g., gpt-35-turbo, gpt-4). |
| 171 | + // - TextModel is a completion model (e.g., gpt-4, gpt-4o). |
172 | 172 | // - EmbeddingModelSet is an embedding model (e.g., "text-embedding-ada-002").
|
173 | 173 | // - APIKey is the key generated to access the service.
|
174 | 174 | // - OrgId is the optional OpenAI organization id/key.
|
|
0 commit comments