-
Notifications
You must be signed in to change notification settings - Fork 6k
Add declarative Sakana AI provider for the OpenAI-compatible Fugu API #10357
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| { | ||
| "name": "sakana", | ||
| "engine": "openai", | ||
| "display_name": "Sakana AI", | ||
| "description": "Sakana Fugu multi-agent system delivered as one OpenAI-compatible model API", | ||
| "api_key_env": "SAKANA_API_KEY", | ||
| "base_url": "https://api.sakana.ai/v1", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
With this Useful? React with 👍 / 👎. |
||
| "models": [ | ||
| { | ||
| "name": "fugu", | ||
| "context_limit": 1000000, | ||
| "input_token_cost": null, | ||
| "output_token_cost": null, | ||
| "currency": null, | ||
| "supports_cache_control": null | ||
| }, | ||
| { | ||
| "name": "fugu-ultra", | ||
| "context_limit": 1000000, | ||
| "input_token_cost": null, | ||
| "output_token_cost": null, | ||
| "currency": null, | ||
| "supports_cache_control": null | ||
| } | ||
| ], | ||
| "headers": null, | ||
| "timeout_seconds": null, | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
When a user runs Useful? React with 👍 / 👎. |
||
| "model_doc_link": "https://console.sakana.ai/models", | ||
| "preserves_thinking": true, | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Setting Useful? React with 👍 / 👎. |
||
| "supports_streaming": true | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please set
catalog_provider_idtosakanafor this fixed provider. I checkeddeclarative_inventory_identity, and when an OpenAI-compatible declarative config omits this field it records the inventoryprovider_familyasopenai, so the staticfugu/fugu-ultraentries are enriched against the OpenAI catalog instead of the existingsakana/*canonical models; desktop model selection then getsreasoning: nullfromacpListProviderModelsand hides thinking controls for these reasoning-capable models.Useful? React with 👍 / 👎.