Skip to content

Commit

Permalink
update tests with deepseek models
Browse files Browse the repository at this point in the history
  • Loading branch information
rishsriv committed Jan 21, 2025
1 parent e2dee90 commit 893f946
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions tests/test_utils_multi_llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,9 @@ async def test_simple_chat_async(self):
"meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo",
# "o1-mini", --o1-mini seems to be having issues, and o3-mini will be out soon anyway. so leaving out for now
"o1",
"gemini-2.0-flash-exp"
"gemini-2.0-flash-exp",
"deepseek-chat",
"deepseek-reasoner"
]
messages = [
{"role": "user", "content": "Return a greeting in not more than 2 words\n"}
Expand All @@ -212,7 +214,9 @@ async def test_sql_chat_async(self):
"meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo",
# "o1-mini", --o1-mini seems to be having issues, and o3-mini will be out soon anyway. so leaving out for now
"o1",
"gemini-2.0-flash-exp"
"gemini-2.0-flash-exp",
"deepseek-chat",
"deepseek-reasoner"
]
for model in models:
response = await chat_async(
Expand All @@ -233,6 +237,8 @@ async def test_sql_chat_structured_async(self):
"gpt-4o",
"o1",
"gemini-2.0-flash-exp",
"deepseek-chat",
"deepseek-reasoner"
]
for model in models:
response = await chat_async(
Expand Down

0 comments on commit 893f946

Please sign in to comment.