Skip to content

Commit 20dbc92

Browse files
Update src/seclab_taskflow_agent/agent.py
Co-authored-by: Copilot <[email protected]>
1 parent daaef6c commit 20dbc92

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/seclab_taskflow_agent/agent.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,10 @@
2727
case AI_API_ENDPOINT_ENUM.AI_API_MODELS_GITHUB:
2828
default_model = 'openai/gpt-4o'
2929
case _:
30-
raise ValueError(f"Unsupported Model Endpoint: {api_endpoint}\n"
31-
f"Supported endpoints: {[e.to_url() for e in AI_API_ENDPOINT_ENUM]}")
30+
raise ValueError(
31+
f"Unsupported Model Endpoint: {api_endpoint}\n"
32+
f"Supported endpoints: {[e.to_url() for e in AI_API_ENDPOINT_ENUM]}"
33+
)
3234

3335
DEFAULT_MODEL = os.getenv('COPILOT_DEFAULT_MODEL', default=default_model)
3436

0 commit comments

Comments
 (0)