From 58e25fe900fae1cfba02f8dab0f704a9bd92b33d Mon Sep 17 00:00:00 2001 From: jxxghp Date: Thu, 30 Apr 2026 21:02:58 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=20test=5Fopenai=5Fstream=5Fp?= =?UTF-8?q?atch.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test_openai_stream_patch.py | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 test_openai_stream_patch.py diff --git a/test_openai_stream_patch.py b/test_openai_stream_patch.py deleted file mode 100644 index 3e157513..00000000 --- a/test_openai_stream_patch.py +++ /dev/null @@ -1,14 +0,0 @@ -import asyncio -from app.agent.llm.helper import LLMHelper -from app.core.config import settings -import json - -async def run(): - llm = await LLMHelper.get_llm( - streaming=False, - provider="chatgpt", - model="gpt-5.1-codex", - ) - print("streaming:", llm.streaming) - -asyncio.run(run())