We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20dbc92 commit 59648f3Copy full SHA for 59648f3
src/seclab_taskflow_agent/capi.py
@@ -101,8 +101,10 @@ def supports_tool_calls(model: str, models: dict) -> bool:
101
return 'tool-calling' in models.get(model, {}).\
102
get('capabilities', [])
103
case _:
104
- raise ValueError(f"Unsupported Model Endpoint: {api_endpoint}\n"
105
- f"Supported endpoints: {[e.to_url() for e in AI_API_ENDPOINT_ENUM]}")
+ raise ValueError(
+ f"Unsupported Model Endpoint: {api_endpoint}\n"
106
+ f"Supported endpoints: {[e.to_url() for e in AI_API_ENDPOINT_ENUM]}"
107
+ )
108
109
def list_tool_call_models(token: str) -> dict[str, dict]:
110
models = list_capi_models(token)
0 commit comments