We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd1d6f6 commit 8d738a4Copy full SHA for 8d738a4
src/codegate/muxing/adapter.py
@@ -136,7 +136,7 @@ def _format_antropic(self, chunk: str) -> str:
136
137
def _format_as_openai_chunk(self, formatted_chunk: str) -> str:
138
"""Format the chunk as OpenAI chunk. This is the format how the clients expect the data."""
139
- chunk_to_send = f"data:{formatted_chunk}\n\n"
+ chunk_to_send = f"data: {formatted_chunk}\n\n"
140
return chunk_to_send
141
142
async def _format_streaming_response(
0 commit comments