删除 test_openai_stream_patch.py

This commit is contained in:
jxxghp
2026-04-30 21:02:58 +08:00
committed by GitHub
parent 03f6b9bc96
commit 58e25fe900

View File

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