Skip to content

Commit 943d264

Browse files
author
Dmytro Parfeniuk
committed
removed unused prints
1 parent b8ac9c1 commit 943d264

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/guidellm/backend/openai.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@ async def make_request(
103103

104104
request_args.update(self._request_args)
105105

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

116115
token_count = 0
117116
async for chunk in stream:
118-
print(f"Getting chunk: {chunk}")
119117
choice = chunk.choices[0]
120118
token = choice.delta.content or ""
121119

0 commit comments

Comments
 (0)