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 daaef6c commit 20dbc92Copy full SHA for 20dbc92
src/seclab_taskflow_agent/agent.py
@@ -27,8 +27,10 @@
27
case AI_API_ENDPOINT_ENUM.AI_API_MODELS_GITHUB:
28
default_model = 'openai/gpt-4o'
29
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]}")
+ raise ValueError(
+ f"Unsupported Model Endpoint: {api_endpoint}\n"
32
+ f"Supported endpoints: {[e.to_url() for e in AI_API_ENDPOINT_ENUM]}"
33
+ )
34
35
DEFAULT_MODEL = os.getenv('COPILOT_DEFAULT_MODEL', default=default_model)
36
0 commit comments