feat: add FuturMix AI Gateway model templates#2673
Open
FuturMix wants to merge 1 commit intocoze-dev:mainfrom
Open
feat: add FuturMix AI Gateway model templates#2673FuturMix wants to merge 1 commit intocoze-dev:mainfrom
FuturMix wants to merge 1 commit intocoze-dev:mainfrom
Conversation
Add model template configuration files for FuturMix (https://futurmix.ai), an OpenAI-compatible AI gateway that provides unified access to 22+ models from OpenAI, Anthropic, and Google through a single endpoint. Templates added: - model_template_futurmix.yaml — GPT-4o (default) - model_template_futurmix_claude-sonnet-4.yaml — Claude Sonnet 4 - model_template_futurmix_gemini-2.0-flash.yaml — Gemini 2.0 Flash All templates use protocol: openai since FuturMix exposes an OpenAI-compatible /v1/chat/completions endpoint, matching the recommendation in issue coze-dev#51 for third-party gateway integration. Relates to coze-dev#51 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Author
|
@CLAassistant recheck |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add model template configuration files for FuturMix, an OpenAI-compatible AI gateway that provides unified access to 22+ models from OpenAI, Anthropic, and Google through a single endpoint.
model_template_futurmix.yaml— GPT-4o (default template, id: 70010)model_template_futurmix_claude-sonnet-4.yaml— Claude Sonnet 4 (id: 70020)model_template_futurmix_gemini-2.0-flash.yaml— Gemini 2.0 Flash (id: 70030)Design Decision
All templates use
protocol: openaisince FuturMix exposes a standard OpenAI-compatible/v1/chat/completionsendpoint. This reuses the existingopenaiModelBuilderwith no Go code changes required — only thebase_urlandmodelfields differ from the OpenAI template.This follows the same approach recommended by the maintainer in #51 (comment):
Why FuturMix?
https://futurmix.ai/v1)Relates to #51
Test Plan
protocol: openai— no new model builder or provider registration neededby_azure: falseset correctly (issue Does LLM config support models provided by OpenRouter? #51 root cause wasby_azure: true)model_template_openai.yaml🤖 Generated with Claude Code