Merge remote-tracking branch 'origin/main' into pr-949

This commit is contained in:
Re-bin
2026-02-22 18:21:47 +00:00
17 changed files with 591 additions and 77 deletions

View File

@@ -44,7 +44,7 @@ class CustomProvider(LLMProvider):
return LLMResponse(
content=msg.content, tool_calls=tool_calls, finish_reason=choice.finish_reason or "stop",
usage={"prompt_tokens": u.prompt_tokens, "completion_tokens": u.completion_tokens, "total_tokens": u.total_tokens} if u else {},
reasoning_content=getattr(msg, "reasoning_content", None),
reasoning_content=getattr(msg, "reasoning_content", None) or None,
)
def get_default_model(self) -> str: