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())