-
Notifications
You must be signed in to change notification settings - Fork 6k
feat: add Celeris provider #10714
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
feat: add Celeris provider #10714
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,20 @@ | ||
| { | ||
| "name": "celeris", | ||
|
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 Useful? React with 👍 / 👎. |
||
| "engine": "openai", | ||
| "display_name": "Celeris", | ||
| "description": "General-purpose diffusion language models over an OpenAI-compatible API. Tokens are generated in parallel blocks rather than one at a time, which makes them substantially faster than comparable autoregressive models. celeris-1 has an 8192 token context shared between the prompt and the completion, and the base URL pins the model in its path.", | ||
| "api_key_env": "CELERIS_API_KEY", | ||
| "base_url": "https://inference.celeris.ai/celeris-1/v1", | ||
| "models": [ | ||
| { "name": "celeris-1", "context_limit": 8192 } | ||
|
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 the default auto-compaction threshold (0.8) and no Useful? React with 👍 / 👎. |
||
| ], | ||
| "dynamic_models": false, | ||
| "skip_canonical_filtering": true, | ||
| "supports_streaming": true, | ||
| "model_doc_link": "https://docs.celeris.ai/api-reference", | ||
| "setup_steps": [ | ||
| "Sign up at https://celeris.ai", | ||
| "Create an API key", | ||
| "Paste the key above as CELERIS_API_KEY" | ||
| ] | ||
| } | ||
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.
This line exposes a new bundled provider, but the commit leaves
goose-self-test.yamlunchanged, so the repository-required feature-level validation does not cover the integration or its unusual request constraints. Add an appropriate Celeris validation scenario to the self-test recipe before exposing the provider.AGENTS.md reference: AGENTS.md:L71-L71
Useful? React with 👍 / 👎.