Skip to content

Commit a9f3897

Browse files
committed
Local II
1 parent 24398e2 commit a9f3897

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/test_interpreter.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ async def test_fastapi_server():
129129
# Sending POST request
130130
post_url = "http://localhost:8000/settings"
131131
settings = {
132-
"model": "gpt-3.5-turbo",
132+
"model": "gpt-4-turbo",
133133
"messages": [
134134
{
135135
"role": "user",
@@ -183,7 +183,7 @@ async def test_fastapi_server():
183183
# Send another POST request
184184
post_url = "http://localhost:8000/settings"
185185
settings = {
186-
"model": "gpt-3.5-turbo",
186+
"model": "gpt-4-turbo",
187187
"messages": [
188188
{
189189
"role": "user",
@@ -267,7 +267,7 @@ def test_m_vision():
267267
]
268268

269269
interpreter.llm.supports_vision = False
270-
interpreter.llm.model = "gpt-4-turbo"
270+
interpreter.llm.model = "gpt-4o"
271271
interpreter.llm.supports_functions = True
272272
interpreter.llm.context_window = 110000
273273
interpreter.llm.max_tokens = 4096
@@ -304,7 +304,7 @@ def test_skills():
304304

305305
import json
306306

307-
interpreter.llm.model = "gpt-4-turbo"
307+
interpreter.llm.model = "gpt-4o"
308308

309309
messages = ["USER: Hey can you search the web for me?\nAI: Sure!"]
310310

@@ -558,7 +558,7 @@ def setup_function():
558558
interpreter.reset()
559559
interpreter.llm.temperature = 0
560560
interpreter.auto_run = True
561-
interpreter.llm.model = "gpt-4-turbo"
561+
interpreter.llm.model = "gpt-4o"
562562
interpreter.llm.context_window = 123000
563563
interpreter.llm.max_tokens = 4096
564564
interpreter.llm.supports_functions = True

0 commit comments

Comments
 (0)