fix - use csv list for batch completions

This commit is contained in:
Ishaan Jaff 2024-05-11 14:24:48 -07:00
parent 62276fc221
commit d4288b134b
2 changed files with 4 additions and 6 deletions

View file

@ -424,10 +424,7 @@ async def test_batch_chat_completions():
response = await chat_completion(
session=session,
key="sk-1234",
model=[
"gpt-3.5-turbo",
"fake-openai-endpoint",
],
model="gpt-3.5-turbo,fake-openai-endpoint",
)
print(f"response: {response}")