style: 简化文档卡片样式,优化布局间距

This commit is contained in:
2026-04-05 10:16:16 +08:00
parent 9ff51ac2f3
commit 7ed199aaf1
10 changed files with 260 additions and 298 deletions
+2 -2
View File
@@ -63,10 +63,10 @@ def _extract_message(response) -> tuple[str, str]:
async def call_ollama(
prompt: str,
*,
system_prompt: str = None,
system_prompt: str | None = None,
tag: str = "default",
temperature: float = 0.7,
thinking: str = None,
thinking: str | None = None,
) -> dict:
"""
调用 Ollama API 并返回 content 和 thinking。