Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
mishig25 committed Oct 31, 2024
1 parent 876384a commit c747eda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/tasks/src/snippets/python.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ stream = client.chat.completions.create(
)
for chunk in stream:
print(chunk.choices[0].delta.content)`);
print(chunk.choices[0].delta.content, end="")`);
});

it("conversational vlm", async () => {
Expand Down Expand Up @@ -73,6 +73,6 @@ stream = client.chat.completions.create(
)
for chunk in stream:
print(chunk.choices[0].delta.content)`);
print(chunk.choices[0].delta.content, end="")`);
});
});

0 comments on commit c747eda

Please sign in to comment.