Fix Anthropic skill references and backend git support

This commit is contained in:
2026-07-23 22:13:50 +00:00
parent 2c5d9d31b6
commit ab1c5b081c
3 changed files with 11 additions and 7 deletions
+4 -1
View File
@@ -269,7 +269,10 @@ class AnthropicProvider(LLMProvider):
runs ``validate.py`` server-side via code_execution, and voluntarily
calls ``output_tool`` once it has well-formed data.
"""
try:\n skill_id, version = settings.get_skill(skill_name)\n except Exception:\n skill_id, version = None, None
try:
skill_id, version = settings.get_skill(skill_name)
except Exception:
skill_id, version = None, None
# Build initial user content
user_content: list[dict] = []