feat: add xAI Grok provider support#12
Merged
jgarzik merged 1 commit intojgarzik:mainfrom Feb 8, 2026
Merged
Conversation
Add Grok (xAI) as a supported AI provider in BotMaker dashboard and keyring-proxy. Changes: - Add Grok provider config with 6 models (grok-4, grok-4-heavy, grok-4-1-fast, grok-4-1-fast-reasoning, grok-3, grok-3-mini) - Register Grok in provider list alongside existing providers - Add Grok vendor config to keyring-proxy with OpenAI-compatible API endpoint Grok API: - Base URL: https://api.x.ai/v1 - Auth: Bearer token (OpenAI-compatible) - Default model: grok-4-1-fast (optimized for agentic workflows) Tested with grok-4-1-fast-reasoning model via keyring-proxy zero-trust architecture.
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
Adds xAI Grok as a supported AI provider in BotMaker, enabling users to leverage Grok models (including the new Grok 4 series) with BotMaker's zero-trust credential management.
Changes
dashboard/src/config/providers/grok.ts): Defines 6 Grok modelsdashboard/src/config/providers/index.ts): Registers Grok in provider listproxy/src/types.ts): Adds Grok vendor config for keyring-proxyAPI Details
https://api.x.ai/v1Testing
Tested with grok-4-1-fast-reasoning model via keyring-proxy zero-trust architecture. API calls successfully routed through proxy with encrypted credentials.
Notes