We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a63a90c commit cdda320Copy full SHA for cdda320
.gitignore
@@ -1,8 +1,10 @@
1
.env
2
+docker-compose.yml
3
*.pyc
4
/.git/
5
/.idea/
6
/tmp/
7
/data/
8
/.venv/
-/.vscode/
9
+/.vscode/
10
+/warpdata/
chatgpt/ChatService.py
@@ -140,7 +140,9 @@ async def set_model(self):
140
else:
141
self.gizmo_id = None
142
143
- if "o3-mini-high" in self.origin_model:
+ if self.gizmo_id:
144
+ self.req_model = "gpt-4o" # https://github.com/lanqian528/chat2api/pull/227
145
+ elif "o3-mini-high" in self.origin_model:
146
self.req_model = "o3-mini-high"
147
elif "o3-mini-medium" in self.origin_model:
148
self.req_model = "o3-mini-medium"
docker-compose.yml docker-compose.basic.ymldocker-compose.yml renamed to docker-compose.basic.yml
0 commit comments