File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ def test_generator():
27
27
Sends two messages, makes sure everything is correct with display both on and off.
28
28
"""
29
29
30
+ interpreter .llm .model = "gpt-4"
31
+
30
32
for tests in [
31
33
{"query" : "What's 38023*40334? Use Python" , "display" : True },
32
34
{"query" : "What's 2334*34335555? Use Python" , "display" : True },
@@ -129,7 +131,7 @@ async def test_fastapi_server():
129
131
# Sending POST request
130
132
post_url = "http://localhost:8000/settings"
131
133
settings = {
132
- "model" : "gpt-4-turbo " ,
134
+ "model" : "gpt-4o " ,
133
135
"messages" : [
134
136
{
135
137
"role" : "user" ,
@@ -183,7 +185,7 @@ async def test_fastapi_server():
183
185
# Send another POST request
184
186
post_url = "http://localhost:8000/settings"
185
187
settings = {
186
- "model" : "gpt-4-turbo " ,
188
+ "model" : "gpt-4o " ,
187
189
"messages" : [
188
190
{
189
191
"role" : "user" ,
You can’t perform that action at this time.
0 commit comments