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
| AZURE_OPENAI_ENDPOINT | This value can be found in the **Keys & Endpoint** section when examining your resource from the Azure portal. Alternatively, you can find the value in **Azure OpenAI Studio** > **Playground** > **Code View**. An example endpoint is: `https://docs-test-001.openai.azure.com/`. | N |
33
-
| AZURE_OPENAI_API_VER |[See here](https://learn.microsoft.com/en-us/azure/cognitive-services/openai/quickstart?tabs=command-line&pivots=rest-api) or Azure OpenAI Studio | 2023-03-15-preview |
34
-
| AZURE_OPENAI_MODEL_MAPPER | This value will correspond to the custom name you chose for your deployment when you deployed a model. This value can be found under **Resource Management** > **Deployments** in the Azure portal or alternatively under **Management** > **Deployments** in Azure OpenAI Studio. |gpt-3.5-turbo=gpt-35-turbo|
34
+
| AZURE_OPENAI_API_VER |[See here](https://learn.microsoft.com/en-us/azure/cognitive-services/openai/quickstart?tabs=command-line&pivots=rest-api) or Azure OpenAI Studio | 2023-07-01-preview |
35
+
| AZURE_OPENAI_MODEL_MAPPER | This value will correspond to the custom name you chose for your deployment when you deployed a model. This value can be found under **Resource Management** > **Deployments** in the Azure portal or alternatively under **Management** > **Deployments** in Azure OpenAI Studio. |N|
35
36
36
37
`AZURE_OPENAI_MODEL_MAPPER` is a mapping from Azure OpenAI deployed model names to official OpenAI model names. You can use commas to separate multiple mappings.

@@ -135,7 +136,7 @@ services:
135
136
environment:
136
137
AZURE_OPENAI_ENDPOINT: <Azure OpenAI API Endpoint>
137
138
AZURE_OPENAI_MODEL_MAPPER: <Azure OpenAI API Deployment Mapper>
138
-
AZURE_OPENAI_API_VER: 2023-03-15-preview
139
+
AZURE_OPENAI_API_VER: 2023-07-01-preview
139
140
networks:
140
141
- chatgpt-ns
141
142
@@ -150,3 +151,77 @@ Run:
150
151
docker compose up -d
151
152
````
152
153
154
+
### Use ChatGPT-Next-Web
155
+
156
+
docker-compose.yml
157
+
158
+
````yaml
159
+
version: '3'
160
+
161
+
services:
162
+
chatgpt-web:
163
+
image: yidadaa/chatgpt-next-web
164
+
ports:
165
+
- 3000:3000
166
+
environment:
167
+
OPENAI_API_KEY: <Azure OpenAI API Key>
168
+
BASE_URL: http://azure-openai:8080
169
+
CODE: ""
170
+
HIDE_USER_API_KEY: 1
171
+
HIDE_BALANCE_QUERY: 1
172
+
depends_on:
173
+
- azure-openai
174
+
links:
175
+
- azure-openai
176
+
networks:
177
+
- chatgpt-ns
178
+
179
+
azure-openai:
180
+
image: stulzq/azure-openai-proxy
181
+
ports:
182
+
- 8080:8080
183
+
environment:
184
+
AZURE_OPENAI_ENDPOINT: <Azure OpenAI API Endpoint>
185
+
AZURE_OPENAI_MODEL_MAPPER: <Azure OpenAI API Deployment Mapper>
0 commit comments