zhaoqingang
2025-02-26 a1e8b5465845393c013cb2d3ae12cbecc5c4efd8
app/service/v2/app_driver/chat_dialog.py
@@ -9,7 +9,7 @@
    async def chat_completions(self, url, data, headers):
        complete_response = ""
        async for line in self.http_stream(url, data, headers):
            print(line)
            # print(line)
            if line.startswith("data:"):
                complete_response = line.strip("data:").strip()
            else: