Skip to content

Commit 58c1c65

Browse files
committed
fix: model name
1 parent 752d569 commit 58c1c65

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/asyncio/test_message.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ async def test_enqueue_api_llm_async(
252252
res = await async_client.message.enqueue_json(
253253
queue=name,
254254
body={
255-
"model": "meta-llama/Meta-Llama-3-8B-Instruct",
255+
"model": "gpt-3.5-turbo",
256256
"messages": [
257257
{
258258
"role": "user",

tests/test_message.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ def test_enqueue_api_llm(
238238
res = client.message.enqueue_json(
239239
queue=name,
240240
body={
241-
"model": "meta-llama/Meta-Llama-3-8B-Instruct",
241+
"model": "gpt-3.5-turbo",
242242
"messages": [
243243
{
244244
"role": "user",

0 commit comments

Comments
 (0)