统一text_chat_stream fallback

This commit is contained in:
Raven95676
2025-04-07 17:43:35 +08:00
parent f9459e4abb
commit 42431ea7db
@@ -106,7 +106,21 @@ class LLMTunerModelLoader(Provider):
tool_calls_result=None,
**kwargs,
):
raise NotImplementedError("This method is not implemented yet.")
# raise NotImplementedError("This method is not implemented yet.")
# 调用 text_chat 模拟流式
llm_response = await self.text_chat(
prompt=prompt,
session_id=session_id,
image_urls=image_urls,
func_tool=func_tool,
contexts=contexts,
system_prompt=system_prompt,
tool_calls_result=tool_calls_result,
)
llm_response.is_chunk = True
yield llm_response
llm_response.is_chunk = False
yield llm_response
async def get_current_key(self):
return "none"