Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix(internal): handle leading whitespace in message content
  • Loading branch information
blingblin-g committed Feb 4, 2025
commit 825d22980461d2c98ff95e09810f5f8faf7dd4e4
2 changes: 1 addition & 1 deletion src/openai/lib/streaming/chat/_completions.py
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ def _accumulate_chunk(self, chunk: ChatCompletionChunk) -> ParsedChatCompletionS
raise ContentFilterFinishReasonError()

if (
choice_snapshot.message.content
choice_snapshot.message.content.strip()
and not choice_snapshot.message.refusal
and is_given(self._rich_response_format)
):
Expand Down