Skip to content

Commit

Permalink
removed unused prints
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmytro Parfeniuk committed Sep 12, 2024
1 parent b8ac9c1 commit 943d264
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/guidellm/backend/openai.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ async def make_request(

request_args.update(self._request_args)

print(">>> Creating stream object for OpenAI server ")
stream = await self._async_client.chat.completions.create(
model=self.model,
messages=[
Expand All @@ -115,7 +114,6 @@ async def make_request(

token_count = 0
async for chunk in stream:
print(f"Getting chunk: {chunk}")
choice = chunk.choices[0]
token = choice.delta.content or ""

Expand Down

0 comments on commit 943d264

Please sign in to comment.