Formatting

This commit is contained in:
Nicolas Mowen 2026-06-11 17:11:42 -06:00
parent d616230a04
commit 8453dc76af

View File

@ -1336,9 +1336,9 @@ async def chat_completion(
async def stream_body() -> Any: async def stream_body() -> Any:
yield ( yield (
json.dumps( json.dumps({"type": "messages", "messages": chain}).encode(
{"type": "messages", "messages": chain} "utf-8"
).encode("utf-8") )
+ b"\n" + b"\n"
) )
# Emit the full reasoning trace up front when the # Emit the full reasoning trace up front when the