mirror of
https://github.com/farcasclaudiu/openclaw.git
synced 2026-06-29 11:02:12 +03:00
feat: adding support for Together ai provider (#10304)
This commit is contained in:
@@ -40,6 +40,7 @@ See [Venice AI](/providers/venice).
|
|||||||
- [Qwen (OAuth)](/providers/qwen)
|
- [Qwen (OAuth)](/providers/qwen)
|
||||||
- [OpenRouter](/providers/openrouter)
|
- [OpenRouter](/providers/openrouter)
|
||||||
- [Vercel AI Gateway](/providers/vercel-ai-gateway)
|
- [Vercel AI Gateway](/providers/vercel-ai-gateway)
|
||||||
|
- [Together AI](/providers/together)
|
||||||
- [Cloudflare AI Gateway](/providers/cloudflare-ai-gateway)
|
- [Cloudflare AI Gateway](/providers/cloudflare-ai-gateway)
|
||||||
- [Moonshot AI (Kimi + Kimi Coding)](/providers/moonshot)
|
- [Moonshot AI (Kimi + Kimi Coding)](/providers/moonshot)
|
||||||
- [OpenCode Zen](/providers/opencode)
|
- [OpenCode Zen](/providers/opencode)
|
||||||
|
|||||||
@@ -0,0 +1,65 @@
|
|||||||
|
---
|
||||||
|
summary: "Together AI setup (auth + model selection)"
|
||||||
|
read_when:
|
||||||
|
- You want to use Together AI with OpenClaw
|
||||||
|
- You need the API key env var or CLI auth choice
|
||||||
|
---
|
||||||
|
|
||||||
|
# Together AI
|
||||||
|
|
||||||
|
The [Together AI](https://together.ai) provides access to leading open-source models including Llama, DeepSeek, Kimi, and more through a unified API.
|
||||||
|
|
||||||
|
- Provider: `together`
|
||||||
|
- Auth: `TOGETHER_API_KEY`
|
||||||
|
- API: OpenAI-compatible
|
||||||
|
|
||||||
|
## Quick start
|
||||||
|
|
||||||
|
1. Set the API key (recommended: store it for the Gateway):
|
||||||
|
|
||||||
|
```bash
|
||||||
|
openclaw onboard --auth-choice together-api-key
|
||||||
|
```
|
||||||
|
|
||||||
|
2. Set a default model:
|
||||||
|
|
||||||
|
```json5
|
||||||
|
{
|
||||||
|
agents: {
|
||||||
|
defaults: {
|
||||||
|
model: { primary: "together/zai-org/GLM-4.7" },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## Non-interactive example
|
||||||
|
|
||||||
|
```bash
|
||||||
|
openclaw onboard --non-interactive \
|
||||||
|
--mode local \
|
||||||
|
--auth-choice together-api-key \
|
||||||
|
--together-api-key "$TOGETHER_API_KEY"
|
||||||
|
```
|
||||||
|
|
||||||
|
This will set `together/zai-org/GLM-4.7` as the default model.
|
||||||
|
|
||||||
|
## Environment note
|
||||||
|
|
||||||
|
If the Gateway runs as a daemon (launchd/systemd), make sure `TOGETHER_API_KEY`
|
||||||
|
is available to that process (for example, in `~/.clawdbot/.env` or via
|
||||||
|
`env.shellEnv`).
|
||||||
|
|
||||||
|
## Available models
|
||||||
|
|
||||||
|
Together AI provides access to many popular open-source models:
|
||||||
|
|
||||||
|
- **GLM 4.7 Fp8** - Default model with 200K context window
|
||||||
|
- **Llama 3.3 70B Instruct Turbo** - Fast, efficient instruction following
|
||||||
|
- **Llama 4 Scout** - Vision model with image understanding
|
||||||
|
- **Llama 4 Maverick** - Advanced vision and reasoning
|
||||||
|
- **DeepSeek V3.1** - Powerful coding and reasoning model
|
||||||
|
- **DeepSeek R1** - Advanced reasoning model
|
||||||
|
- **Kimi K2 Instruct** - High-performance model with 262K context window
|
||||||
|
|
||||||
|
All models support standard chat completions and are OpenAI API compatible.
|
||||||
@@ -305,6 +305,7 @@ export function resolveEnvApiKey(provider: string): EnvApiKeyResult | null {
|
|||||||
venice: "VENICE_API_KEY",
|
venice: "VENICE_API_KEY",
|
||||||
mistral: "MISTRAL_API_KEY",
|
mistral: "MISTRAL_API_KEY",
|
||||||
opencode: "OPENCODE_API_KEY",
|
opencode: "OPENCODE_API_KEY",
|
||||||
|
together: "TOGETHER_API_KEY",
|
||||||
qianfan: "QIANFAN_API_KEY",
|
qianfan: "QIANFAN_API_KEY",
|
||||||
ollama: "OLLAMA_API_KEY",
|
ollama: "OLLAMA_API_KEY",
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -16,6 +16,11 @@ import {
|
|||||||
SYNTHETIC_BASE_URL,
|
SYNTHETIC_BASE_URL,
|
||||||
SYNTHETIC_MODEL_CATALOG,
|
SYNTHETIC_MODEL_CATALOG,
|
||||||
} from "./synthetic-models.js";
|
} from "./synthetic-models.js";
|
||||||
|
import {
|
||||||
|
TOGETHER_BASE_URL,
|
||||||
|
TOGETHER_MODEL_CATALOG,
|
||||||
|
buildTogetherModelDefinition,
|
||||||
|
} from "./together-models.js";
|
||||||
import { discoverVeniceModels, VENICE_BASE_URL } from "./venice-models.js";
|
import { discoverVeniceModels, VENICE_BASE_URL } from "./venice-models.js";
|
||||||
|
|
||||||
type ModelsConfig = NonNullable<OpenClawConfig["models"]>;
|
type ModelsConfig = NonNullable<OpenClawConfig["models"]>;
|
||||||
@@ -414,6 +419,14 @@ async function buildOllamaProvider(): Promise<ProviderConfig> {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function buildTogetherProvider(): ProviderConfig {
|
||||||
|
return {
|
||||||
|
baseUrl: TOGETHER_BASE_URL,
|
||||||
|
api: "openai-completions",
|
||||||
|
models: TOGETHER_MODEL_CATALOG.map(buildTogetherModelDefinition),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
export function buildQianfanProvider(): ProviderConfig {
|
export function buildQianfanProvider(): ProviderConfig {
|
||||||
return {
|
return {
|
||||||
baseUrl: QIANFAN_BASE_URL,
|
baseUrl: QIANFAN_BASE_URL,
|
||||||
@@ -536,6 +549,16 @@ export async function resolveImplicitProviders(params: {
|
|||||||
providers.ollama = { ...(await buildOllamaProvider()), apiKey: ollamaKey };
|
providers.ollama = { ...(await buildOllamaProvider()), apiKey: ollamaKey };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const togetherKey =
|
||||||
|
resolveEnvApiKeyVarName("together") ??
|
||||||
|
resolveApiKeyFromProfiles({ provider: "together", store: authStore });
|
||||||
|
if (togetherKey) {
|
||||||
|
providers.together = {
|
||||||
|
...buildTogetherProvider(),
|
||||||
|
apiKey: togetherKey,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
const qianfanKey =
|
const qianfanKey =
|
||||||
resolveEnvApiKeyVarName("qianfan") ??
|
resolveEnvApiKeyVarName("qianfan") ??
|
||||||
resolveApiKeyFromProfiles({ provider: "qianfan", store: authStore });
|
resolveApiKeyFromProfiles({ provider: "qianfan", store: authStore });
|
||||||
@@ -551,7 +574,9 @@ export async function resolveImplicitCopilotProvider(params: {
|
|||||||
env?: NodeJS.ProcessEnv;
|
env?: NodeJS.ProcessEnv;
|
||||||
}): Promise<ProviderConfig | null> {
|
}): Promise<ProviderConfig | null> {
|
||||||
const env = params.env ?? process.env;
|
const env = params.env ?? process.env;
|
||||||
const authStore = ensureAuthProfileStore(params.agentDir, { allowKeychainPrompt: false });
|
const authStore = ensureAuthProfileStore(params.agentDir, {
|
||||||
|
allowKeychainPrompt: false,
|
||||||
|
});
|
||||||
const hasProfile = listProfilesForProvider(authStore, "github-copilot").length > 0;
|
const hasProfile = listProfilesForProvider(authStore, "github-copilot").length > 0;
|
||||||
const envToken = env.COPILOT_GITHUB_TOKEN ?? env.GH_TOKEN ?? env.GITHUB_TOKEN;
|
const envToken = env.COPILOT_GITHUB_TOKEN ?? env.GH_TOKEN ?? env.GITHUB_TOKEN;
|
||||||
const githubToken = (envToken ?? "").trim();
|
const githubToken = (envToken ?? "").trim();
|
||||||
@@ -622,7 +647,10 @@ export async function resolveImplicitBedrockProvider(params: {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const region = discoveryConfig?.region ?? env.AWS_REGION ?? env.AWS_DEFAULT_REGION ?? "us-east-1";
|
const region = discoveryConfig?.region ?? env.AWS_REGION ?? env.AWS_DEFAULT_REGION ?? "us-east-1";
|
||||||
const models = await discoverBedrockModels({ region, config: discoveryConfig });
|
const models = await discoverBedrockModels({
|
||||||
|
region,
|
||||||
|
config: discoveryConfig,
|
||||||
|
});
|
||||||
if (models.length === 0) {
|
if (models.length === 0) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,133 @@
|
|||||||
|
import type { ModelDefinitionConfig } from "../config/types.models.js";
|
||||||
|
|
||||||
|
export const TOGETHER_BASE_URL = "https://api.together.xyz/v1";
|
||||||
|
|
||||||
|
export const TOGETHER_MODEL_CATALOG: ModelDefinitionConfig[] = [
|
||||||
|
{
|
||||||
|
id: "zai-org/GLM-4.7",
|
||||||
|
name: "GLM 4.7 Fp8",
|
||||||
|
reasoning: false,
|
||||||
|
input: ["text"],
|
||||||
|
contextWindow: 202752,
|
||||||
|
maxTokens: 8192,
|
||||||
|
cost: {
|
||||||
|
input: 0.45,
|
||||||
|
output: 2.0,
|
||||||
|
cacheRead: 0.45,
|
||||||
|
cacheWrite: 2.0,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "moonshotai/Kimi-K2.5",
|
||||||
|
name: "Kimi K2.5",
|
||||||
|
reasoning: true,
|
||||||
|
input: ["text", "image"],
|
||||||
|
cost: {
|
||||||
|
input: 0.5,
|
||||||
|
output: 2.8,
|
||||||
|
cacheRead: 0.5,
|
||||||
|
cacheWrite: 2.8,
|
||||||
|
},
|
||||||
|
contextWindow: 262144,
|
||||||
|
maxTokens: 32768,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "meta-llama/Llama-3.3-70B-Instruct-Turbo",
|
||||||
|
name: "Llama 3.3 70B Instruct Turbo",
|
||||||
|
reasoning: false,
|
||||||
|
input: ["text"],
|
||||||
|
contextWindow: 131072,
|
||||||
|
maxTokens: 8192,
|
||||||
|
cost: {
|
||||||
|
input: 0.88,
|
||||||
|
output: 0.88,
|
||||||
|
cacheRead: 0.88,
|
||||||
|
cacheWrite: 0.88,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "meta-llama/Llama-4-Scout-17B-16E-Instruct",
|
||||||
|
name: "Llama 4 Scout 17B 16E Instruct",
|
||||||
|
reasoning: false,
|
||||||
|
input: ["text", "image"],
|
||||||
|
contextWindow: 10000000,
|
||||||
|
maxTokens: 32768,
|
||||||
|
cost: {
|
||||||
|
input: 0.18,
|
||||||
|
output: 0.59,
|
||||||
|
cacheRead: 0.18,
|
||||||
|
cacheWrite: 0.18,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8",
|
||||||
|
name: "Llama 4 Maverick 17B 128E Instruct FP8",
|
||||||
|
reasoning: false,
|
||||||
|
input: ["text", "image"],
|
||||||
|
contextWindow: 20000000,
|
||||||
|
maxTokens: 32768,
|
||||||
|
cost: {
|
||||||
|
input: 0.27,
|
||||||
|
output: 0.85,
|
||||||
|
cacheRead: 0.27,
|
||||||
|
cacheWrite: 0.27,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "deepseek-ai/DeepSeek-V3.1",
|
||||||
|
name: "DeepSeek V3.1",
|
||||||
|
reasoning: false,
|
||||||
|
input: ["text"],
|
||||||
|
contextWindow: 131072,
|
||||||
|
maxTokens: 8192,
|
||||||
|
cost: {
|
||||||
|
input: 0.6,
|
||||||
|
output: 1.25,
|
||||||
|
cacheRead: 0.6,
|
||||||
|
cacheWrite: 0.6,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "deepseek-ai/DeepSeek-R1",
|
||||||
|
name: "DeepSeek R1",
|
||||||
|
reasoning: true,
|
||||||
|
input: ["text"],
|
||||||
|
contextWindow: 131072,
|
||||||
|
maxTokens: 8192,
|
||||||
|
cost: {
|
||||||
|
input: 3.0,
|
||||||
|
output: 7.0,
|
||||||
|
cacheRead: 3.0,
|
||||||
|
cacheWrite: 3.0,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "moonshotai/Kimi-K2-Instruct-0905",
|
||||||
|
name: "Kimi K2-Instruct 0905",
|
||||||
|
reasoning: false,
|
||||||
|
input: ["text"],
|
||||||
|
contextWindow: 262144,
|
||||||
|
maxTokens: 8192,
|
||||||
|
cost: {
|
||||||
|
input: 1.0,
|
||||||
|
output: 3.0,
|
||||||
|
cacheRead: 1.0,
|
||||||
|
cacheWrite: 3.0,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
export function buildTogetherModelDefinition(
|
||||||
|
model: (typeof TOGETHER_MODEL_CATALOG)[number],
|
||||||
|
): ModelDefinitionConfig {
|
||||||
|
return {
|
||||||
|
id: model.id,
|
||||||
|
name: model.name,
|
||||||
|
api: "openai-completions",
|
||||||
|
reasoning: model.reasoning,
|
||||||
|
input: model.input,
|
||||||
|
cost: model.cost,
|
||||||
|
contextWindow: model.contextWindow,
|
||||||
|
maxTokens: model.maxTokens,
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -22,7 +22,9 @@ const runtime = {
|
|||||||
}),
|
}),
|
||||||
};
|
};
|
||||||
|
|
||||||
vi.mock("./plugin-registry.js", () => ({ ensurePluginRegistryLoaded: () => undefined }));
|
vi.mock("./plugin-registry.js", () => ({
|
||||||
|
ensurePluginRegistryLoaded: () => undefined,
|
||||||
|
}));
|
||||||
|
|
||||||
vi.mock("../commands/message.js", () => ({ messageCommand }));
|
vi.mock("../commands/message.js", () => ({ messageCommand }));
|
||||||
vi.mock("../commands/status.js", () => ({ statusCommand }));
|
vi.mock("../commands/status.js", () => ({ statusCommand }));
|
||||||
@@ -42,7 +44,9 @@ vi.mock("../commands/configure.js", () => ({
|
|||||||
}));
|
}));
|
||||||
vi.mock("../commands/setup.js", () => ({ setupCommand }));
|
vi.mock("../commands/setup.js", () => ({ setupCommand }));
|
||||||
vi.mock("../commands/onboard.js", () => ({ onboardCommand }));
|
vi.mock("../commands/onboard.js", () => ({ onboardCommand }));
|
||||||
vi.mock("../commands/doctor-config-flow.js", () => ({ loadAndMaybeMigrateDoctorConfig }));
|
vi.mock("../commands/doctor-config-flow.js", () => ({
|
||||||
|
loadAndMaybeMigrateDoctorConfig,
|
||||||
|
}));
|
||||||
vi.mock("../runtime.js", () => ({ defaultRuntime: runtime }));
|
vi.mock("../runtime.js", () => ({ defaultRuntime: runtime }));
|
||||||
vi.mock("./channel-auth.js", () => ({ runChannelLogin, runChannelLogout }));
|
vi.mock("./channel-auth.js", () => ({ runChannelLogin, runChannelLogout }));
|
||||||
vi.mock("../tui/tui.js", () => ({ runTui }));
|
vi.mock("../tui/tui.js", () => ({ runTui }));
|
||||||
@@ -174,6 +178,12 @@ describe("cli program (smoke)", () => {
|
|||||||
key: "sk-moonshot-test",
|
key: "sk-moonshot-test",
|
||||||
field: "moonshotApiKey",
|
field: "moonshotApiKey",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
authChoice: "together-api-key",
|
||||||
|
flag: "--together-api-key",
|
||||||
|
key: "sk-together-test",
|
||||||
|
field: "togetherApiKey",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
authChoice: "moonshot-api-key-cn",
|
authChoice: "moonshot-api-key-cn",
|
||||||
flag: "--moonshot-api-key",
|
flag: "--moonshot-api-key",
|
||||||
|
|||||||
@@ -58,7 +58,7 @@ export function registerOnboardCommand(program: Command) {
|
|||||||
.option("--mode <mode>", "Wizard mode: local|remote")
|
.option("--mode <mode>", "Wizard mode: local|remote")
|
||||||
.option(
|
.option(
|
||||||
"--auth-choice <choice>",
|
"--auth-choice <choice>",
|
||||||
"Auth: setup-token|token|chutes|openai-codex|openai-api-key|xai-api-key|qianfan-api-key|openrouter-api-key|ai-gateway-api-key|cloudflare-ai-gateway-api-key|moonshot-api-key|moonshot-api-key-cn|kimi-code-api-key|synthetic-api-key|venice-api-key|gemini-api-key|zai-api-key|xiaomi-api-key|apiKey|minimax-api|minimax-api-lightning|opencode-zen|skip",
|
"Auth: setup-token|token|chutes|openai-codex|openai-api-key|xai-api-key|qianfan-api-key|openrouter-api-key|ai-gateway-api-key|cloudflare-ai-gateway-api-key|moonshot-api-key|moonshot-api-key-cn|kimi-code-api-key|synthetic-api-key|venice-api-key|gemini-api-key|zai-api-key|xiaomi-api-key|apiKey|minimax-api|minimax-api-lightning|opencode-zen|skip|together-api-key",
|
||||||
)
|
)
|
||||||
.option(
|
.option(
|
||||||
"--token-provider <id>",
|
"--token-provider <id>",
|
||||||
@@ -85,6 +85,7 @@ export function registerOnboardCommand(program: Command) {
|
|||||||
.option("--minimax-api-key <key>", "MiniMax API key")
|
.option("--minimax-api-key <key>", "MiniMax API key")
|
||||||
.option("--synthetic-api-key <key>", "Synthetic API key")
|
.option("--synthetic-api-key <key>", "Synthetic API key")
|
||||||
.option("--venice-api-key <key>", "Venice API key")
|
.option("--venice-api-key <key>", "Venice API key")
|
||||||
|
.option("--together-api-key <key>", "Together AI API key")
|
||||||
.option("--opencode-zen-api-key <key>", "OpenCode Zen API key")
|
.option("--opencode-zen-api-key <key>", "OpenCode Zen API key")
|
||||||
.option("--xai-api-key <key>", "xAI API key")
|
.option("--xai-api-key <key>", "xAI API key")
|
||||||
.option("--qianfan-api-key <key>", "QIANFAN API key")
|
.option("--qianfan-api-key <key>", "QIANFAN API key")
|
||||||
@@ -142,6 +143,7 @@ export function registerOnboardCommand(program: Command) {
|
|||||||
minimaxApiKey: opts.minimaxApiKey as string | undefined,
|
minimaxApiKey: opts.minimaxApiKey as string | undefined,
|
||||||
syntheticApiKey: opts.syntheticApiKey as string | undefined,
|
syntheticApiKey: opts.syntheticApiKey as string | undefined,
|
||||||
veniceApiKey: opts.veniceApiKey as string | undefined,
|
veniceApiKey: opts.veniceApiKey as string | undefined,
|
||||||
|
togetherApiKey: opts.togetherApiKey as string | undefined,
|
||||||
opencodeZenApiKey: opts.opencodeZenApiKey as string | undefined,
|
opencodeZenApiKey: opts.opencodeZenApiKey as string | undefined,
|
||||||
xaiApiKey: opts.xaiApiKey as string | undefined,
|
xaiApiKey: opts.xaiApiKey as string | undefined,
|
||||||
gatewayPort:
|
gatewayPort:
|
||||||
|
|||||||
@@ -63,6 +63,7 @@ describe("buildAuthChoiceOptions", () => {
|
|||||||
expect(options.some((opt) => opt.value === "moonshot-api-key")).toBe(true);
|
expect(options.some((opt) => opt.value === "moonshot-api-key")).toBe(true);
|
||||||
expect(options.some((opt) => opt.value === "moonshot-api-key-cn")).toBe(true);
|
expect(options.some((opt) => opt.value === "moonshot-api-key-cn")).toBe(true);
|
||||||
expect(options.some((opt) => opt.value === "kimi-code-api-key")).toBe(true);
|
expect(options.some((opt) => opt.value === "kimi-code-api-key")).toBe(true);
|
||||||
|
expect(options.some((opt) => opt.value === "together-api-key")).toBe(true);
|
||||||
});
|
});
|
||||||
|
|
||||||
it("includes Vercel AI Gateway auth choice", () => {
|
it("includes Vercel AI Gateway auth choice", () => {
|
||||||
@@ -81,10 +82,19 @@ describe("buildAuthChoiceOptions", () => {
|
|||||||
store,
|
store,
|
||||||
includeSkip: false,
|
includeSkip: false,
|
||||||
});
|
});
|
||||||
|
|
||||||
expect(options.some((opt) => opt.value === "cloudflare-ai-gateway-api-key")).toBe(true);
|
expect(options.some((opt) => opt.value === "cloudflare-ai-gateway-api-key")).toBe(true);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it("includes Together AI auth choice", () => {
|
||||||
|
const store: AuthProfileStore = { version: 1, profiles: {} };
|
||||||
|
const options = buildAuthChoiceOptions({
|
||||||
|
store,
|
||||||
|
includeSkip: false,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(options.some((opt) => opt.value === "together-api-key")).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
it("includes Synthetic auth choice", () => {
|
it("includes Synthetic auth choice", () => {
|
||||||
const store: AuthProfileStore = { version: 1, profiles: {} };
|
const store: AuthProfileStore = { version: 1, profiles: {} };
|
||||||
const options = buildAuthChoiceOptions({
|
const options = buildAuthChoiceOptions({
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ export type AuthChoiceGroupId =
|
|||||||
| "synthetic"
|
| "synthetic"
|
||||||
| "venice"
|
| "venice"
|
||||||
| "qwen"
|
| "qwen"
|
||||||
|
| "together"
|
||||||
| "qianfan"
|
| "qianfan"
|
||||||
| "xai";
|
| "xai";
|
||||||
|
|
||||||
@@ -129,6 +130,12 @@ const AUTH_CHOICE_GROUP_DEFS: {
|
|||||||
hint: "Anthropic-compatible (multi-model)",
|
hint: "Anthropic-compatible (multi-model)",
|
||||||
choices: ["synthetic-api-key"],
|
choices: ["synthetic-api-key"],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
value: "together",
|
||||||
|
label: "Together AI",
|
||||||
|
hint: "API key",
|
||||||
|
choices: ["together-api-key"],
|
||||||
|
},
|
||||||
{
|
{
|
||||||
value: "venice",
|
value: "venice",
|
||||||
label: "Venice AI",
|
label: "Venice AI",
|
||||||
@@ -185,13 +192,21 @@ export function buildAuthChoiceOptions(params: {
|
|||||||
value: "moonshot-api-key-cn",
|
value: "moonshot-api-key-cn",
|
||||||
label: "Kimi API key (.cn)",
|
label: "Kimi API key (.cn)",
|
||||||
});
|
});
|
||||||
options.push({ value: "kimi-code-api-key", label: "Kimi Code API key (subscription)" });
|
options.push({
|
||||||
|
value: "kimi-code-api-key",
|
||||||
|
label: "Kimi Code API key (subscription)",
|
||||||
|
});
|
||||||
options.push({ value: "synthetic-api-key", label: "Synthetic API key" });
|
options.push({ value: "synthetic-api-key", label: "Synthetic API key" });
|
||||||
options.push({
|
options.push({
|
||||||
value: "venice-api-key",
|
value: "venice-api-key",
|
||||||
label: "Venice AI API key",
|
label: "Venice AI API key",
|
||||||
hint: "Privacy-focused inference (uncensored models)",
|
hint: "Privacy-focused inference (uncensored models)",
|
||||||
});
|
});
|
||||||
|
options.push({
|
||||||
|
value: "together-api-key",
|
||||||
|
label: "Together AI API key",
|
||||||
|
hint: "Access to Llama, DeepSeek, Qwen, and more open models",
|
||||||
|
});
|
||||||
options.push({
|
options.push({
|
||||||
value: "github-copilot",
|
value: "github-copilot",
|
||||||
label: "GitHub Copilot (GitHub device login)",
|
label: "GitHub Copilot (GitHub device login)",
|
||||||
|
|||||||
@@ -29,6 +29,8 @@ import {
|
|||||||
applyOpenrouterProviderConfig,
|
applyOpenrouterProviderConfig,
|
||||||
applySyntheticConfig,
|
applySyntheticConfig,
|
||||||
applySyntheticProviderConfig,
|
applySyntheticProviderConfig,
|
||||||
|
applyTogetherConfig,
|
||||||
|
applyTogetherProviderConfig,
|
||||||
applyVeniceConfig,
|
applyVeniceConfig,
|
||||||
applyVeniceProviderConfig,
|
applyVeniceProviderConfig,
|
||||||
applyVercelAiGatewayConfig,
|
applyVercelAiGatewayConfig,
|
||||||
@@ -42,6 +44,7 @@ import {
|
|||||||
MOONSHOT_DEFAULT_MODEL_REF,
|
MOONSHOT_DEFAULT_MODEL_REF,
|
||||||
OPENROUTER_DEFAULT_MODEL_REF,
|
OPENROUTER_DEFAULT_MODEL_REF,
|
||||||
SYNTHETIC_DEFAULT_MODEL_REF,
|
SYNTHETIC_DEFAULT_MODEL_REF,
|
||||||
|
TOGETHER_DEFAULT_MODEL_REF,
|
||||||
VENICE_DEFAULT_MODEL_REF,
|
VENICE_DEFAULT_MODEL_REF,
|
||||||
VERCEL_AI_GATEWAY_DEFAULT_MODEL_REF,
|
VERCEL_AI_GATEWAY_DEFAULT_MODEL_REF,
|
||||||
XIAOMI_DEFAULT_MODEL_REF,
|
XIAOMI_DEFAULT_MODEL_REF,
|
||||||
@@ -53,6 +56,7 @@ import {
|
|||||||
setOpencodeZenApiKey,
|
setOpencodeZenApiKey,
|
||||||
setOpenrouterApiKey,
|
setOpenrouterApiKey,
|
||||||
setSyntheticApiKey,
|
setSyntheticApiKey,
|
||||||
|
setTogetherApiKey,
|
||||||
setVeniceApiKey,
|
setVeniceApiKey,
|
||||||
setVercelAiGatewayApiKey,
|
setVercelAiGatewayApiKey,
|
||||||
setXiaomiApiKey,
|
setXiaomiApiKey,
|
||||||
@@ -106,6 +110,8 @@ export async function applyAuthChoiceApiProviders(
|
|||||||
authChoice = "synthetic-api-key";
|
authChoice = "synthetic-api-key";
|
||||||
} else if (params.opts.tokenProvider === "venice") {
|
} else if (params.opts.tokenProvider === "venice") {
|
||||||
authChoice = "venice-api-key";
|
authChoice = "venice-api-key";
|
||||||
|
} else if (params.opts.tokenProvider === "together") {
|
||||||
|
authChoice = "together-api-key";
|
||||||
} else if (params.opts.tokenProvider === "opencode") {
|
} else if (params.opts.tokenProvider === "opencode") {
|
||||||
authChoice = "opencode-zen";
|
authChoice = "opencode-zen";
|
||||||
} else if (params.opts.tokenProvider === "qianfan") {
|
} else if (params.opts.tokenProvider === "qianfan") {
|
||||||
@@ -803,6 +809,64 @@ export async function applyAuthChoiceApiProviders(
|
|||||||
return { config: nextConfig, agentModelOverride };
|
return { config: nextConfig, agentModelOverride };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (authChoice === "together-api-key") {
|
||||||
|
let hasCredential = false;
|
||||||
|
|
||||||
|
if (!hasCredential && params.opts?.token && params.opts?.tokenProvider === "together") {
|
||||||
|
await setTogetherApiKey(normalizeApiKeyInput(params.opts.token), params.agentDir);
|
||||||
|
hasCredential = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!hasCredential) {
|
||||||
|
await params.prompter.note(
|
||||||
|
[
|
||||||
|
"Together AI provides access to leading open-source models including Llama, DeepSeek, Qwen, and more.",
|
||||||
|
"Get your API key at: https://api.together.xyz/settings/api-keys",
|
||||||
|
].join("\n"),
|
||||||
|
"Together AI",
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const envKey = resolveEnvApiKey("together");
|
||||||
|
if (envKey) {
|
||||||
|
const useExisting = await params.prompter.confirm({
|
||||||
|
message: `Use existing TOGETHER_API_KEY (${envKey.source}, ${formatApiKeyPreview(envKey.apiKey)})?`,
|
||||||
|
initialValue: true,
|
||||||
|
});
|
||||||
|
if (useExisting) {
|
||||||
|
await setTogetherApiKey(envKey.apiKey, params.agentDir);
|
||||||
|
hasCredential = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!hasCredential) {
|
||||||
|
const key = await params.prompter.text({
|
||||||
|
message: "Enter Together AI API key",
|
||||||
|
validate: validateApiKeyInput,
|
||||||
|
});
|
||||||
|
await setTogetherApiKey(normalizeApiKeyInput(String(key)), params.agentDir);
|
||||||
|
}
|
||||||
|
nextConfig = applyAuthProfileConfig(nextConfig, {
|
||||||
|
profileId: "together:default",
|
||||||
|
provider: "together",
|
||||||
|
mode: "api_key",
|
||||||
|
});
|
||||||
|
{
|
||||||
|
const applied = await applyDefaultModelChoice({
|
||||||
|
config: nextConfig,
|
||||||
|
setDefaultModel: params.setDefaultModel,
|
||||||
|
defaultModel: TOGETHER_DEFAULT_MODEL_REF,
|
||||||
|
applyDefaultConfig: applyTogetherConfig,
|
||||||
|
applyProviderConfig: applyTogetherProviderConfig,
|
||||||
|
noteDefault: TOGETHER_DEFAULT_MODEL_REF,
|
||||||
|
noteAgentModel,
|
||||||
|
prompter: params.prompter,
|
||||||
|
});
|
||||||
|
nextConfig = applied.config;
|
||||||
|
agentModelOverride = applied.agentModelOverride ?? agentModelOverride;
|
||||||
|
}
|
||||||
|
return { config: nextConfig, agentModelOverride };
|
||||||
|
}
|
||||||
|
|
||||||
if (authChoice === "qianfan-api-key") {
|
if (authChoice === "qianfan-api-key") {
|
||||||
let hasCredential = false;
|
let hasCredential = false;
|
||||||
if (!hasCredential && params.opts?.token && params.opts?.tokenProvider === "qianfan") {
|
if (!hasCredential && params.opts?.token && params.opts?.tokenProvider === "qianfan") {
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ const PREFERRED_PROVIDER_BY_AUTH_CHOICE: Partial<Record<AuthChoice, string>> = {
|
|||||||
"xiaomi-api-key": "xiaomi",
|
"xiaomi-api-key": "xiaomi",
|
||||||
"synthetic-api-key": "synthetic",
|
"synthetic-api-key": "synthetic",
|
||||||
"venice-api-key": "venice",
|
"venice-api-key": "venice",
|
||||||
|
"together-api-key": "together",
|
||||||
"github-copilot": "github-copilot",
|
"github-copilot": "github-copilot",
|
||||||
"copilot-proxy": "copilot-proxy",
|
"copilot-proxy": "copilot-proxy",
|
||||||
"minimax-cloud": "minimax",
|
"minimax-cloud": "minimax",
|
||||||
|
|||||||
@@ -16,6 +16,11 @@ import {
|
|||||||
SYNTHETIC_DEFAULT_MODEL_REF,
|
SYNTHETIC_DEFAULT_MODEL_REF,
|
||||||
SYNTHETIC_MODEL_CATALOG,
|
SYNTHETIC_MODEL_CATALOG,
|
||||||
} from "../agents/synthetic-models.js";
|
} from "../agents/synthetic-models.js";
|
||||||
|
import {
|
||||||
|
buildTogetherModelDefinition,
|
||||||
|
TOGETHER_BASE_URL,
|
||||||
|
TOGETHER_MODEL_CATALOG,
|
||||||
|
} from "../agents/together-models.js";
|
||||||
import {
|
import {
|
||||||
buildVeniceModelDefinition,
|
buildVeniceModelDefinition,
|
||||||
VENICE_BASE_URL,
|
VENICE_BASE_URL,
|
||||||
@@ -25,6 +30,7 @@ import {
|
|||||||
import {
|
import {
|
||||||
CLOUDFLARE_AI_GATEWAY_DEFAULT_MODEL_REF,
|
CLOUDFLARE_AI_GATEWAY_DEFAULT_MODEL_REF,
|
||||||
OPENROUTER_DEFAULT_MODEL_REF,
|
OPENROUTER_DEFAULT_MODEL_REF,
|
||||||
|
TOGETHER_DEFAULT_MODEL_REF,
|
||||||
VERCEL_AI_GATEWAY_DEFAULT_MODEL_REF,
|
VERCEL_AI_GATEWAY_DEFAULT_MODEL_REF,
|
||||||
XIAOMI_DEFAULT_MODEL_REF,
|
XIAOMI_DEFAULT_MODEL_REF,
|
||||||
ZAI_DEFAULT_MODEL_REF,
|
ZAI_DEFAULT_MODEL_REF,
|
||||||
@@ -600,6 +606,83 @@ export function applyVeniceConfig(cfg: OpenClawConfig): OpenClawConfig {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Apply Together provider configuration without changing the default model.
|
||||||
|
* Registers Together models and sets up the provider, but preserves existing model selection.
|
||||||
|
*/
|
||||||
|
export function applyTogetherProviderConfig(cfg: OpenClawConfig): OpenClawConfig {
|
||||||
|
const models = { ...cfg.agents?.defaults?.models };
|
||||||
|
models[TOGETHER_DEFAULT_MODEL_REF] = {
|
||||||
|
...models[TOGETHER_DEFAULT_MODEL_REF],
|
||||||
|
alias: models[TOGETHER_DEFAULT_MODEL_REF]?.alias ?? "Together AI",
|
||||||
|
};
|
||||||
|
|
||||||
|
const providers = { ...cfg.models?.providers };
|
||||||
|
const existingProvider = providers.together;
|
||||||
|
const existingModels = Array.isArray(existingProvider?.models) ? existingProvider.models : [];
|
||||||
|
const togetherModels = TOGETHER_MODEL_CATALOG.map(buildTogetherModelDefinition);
|
||||||
|
const mergedModels = [
|
||||||
|
...existingModels,
|
||||||
|
...togetherModels.filter(
|
||||||
|
(model) => !existingModels.some((existing) => existing.id === model.id),
|
||||||
|
),
|
||||||
|
];
|
||||||
|
const { apiKey: existingApiKey, ...existingProviderRest } = (existingProvider ?? {}) as Record<
|
||||||
|
string,
|
||||||
|
unknown
|
||||||
|
> as { apiKey?: string };
|
||||||
|
const resolvedApiKey = typeof existingApiKey === "string" ? existingApiKey : undefined;
|
||||||
|
const normalizedApiKey = resolvedApiKey?.trim();
|
||||||
|
providers.together = {
|
||||||
|
...existingProviderRest,
|
||||||
|
baseUrl: TOGETHER_BASE_URL,
|
||||||
|
api: "openai-completions",
|
||||||
|
...(normalizedApiKey ? { apiKey: normalizedApiKey } : {}),
|
||||||
|
models: mergedModels.length > 0 ? mergedModels : togetherModels,
|
||||||
|
};
|
||||||
|
|
||||||
|
return {
|
||||||
|
...cfg,
|
||||||
|
agents: {
|
||||||
|
...cfg.agents,
|
||||||
|
defaults: {
|
||||||
|
...cfg.agents?.defaults,
|
||||||
|
models,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
models: {
|
||||||
|
mode: cfg.models?.mode ?? "merge",
|
||||||
|
providers,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Apply Together provider configuration AND set Together as the default model.
|
||||||
|
* Use this when Together is the primary provider choice during onboarding.
|
||||||
|
*/
|
||||||
|
export function applyTogetherConfig(cfg: OpenClawConfig): OpenClawConfig {
|
||||||
|
const next = applyTogetherProviderConfig(cfg);
|
||||||
|
const existingModel = next.agents?.defaults?.model;
|
||||||
|
return {
|
||||||
|
...next,
|
||||||
|
agents: {
|
||||||
|
...next.agents,
|
||||||
|
defaults: {
|
||||||
|
...next.agents?.defaults,
|
||||||
|
model: {
|
||||||
|
...(existingModel && "fallbacks" in (existingModel as Record<string, unknown>)
|
||||||
|
? {
|
||||||
|
fallbacks: (existingModel as { fallbacks?: string[] }).fallbacks,
|
||||||
|
}
|
||||||
|
: undefined),
|
||||||
|
primary: TOGETHER_DEFAULT_MODEL_REF,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
export function applyXaiProviderConfig(cfg: OpenClawConfig): OpenClawConfig {
|
export function applyXaiProviderConfig(cfg: OpenClawConfig): OpenClawConfig {
|
||||||
const models = { ...cfg.agents?.defaults?.models };
|
const models = { ...cfg.agents?.defaults?.models };
|
||||||
models[XAI_DEFAULT_MODEL_REF] = {
|
models[XAI_DEFAULT_MODEL_REF] = {
|
||||||
|
|||||||
@@ -118,6 +118,7 @@ export async function setVeniceApiKey(key: string, agentDir?: string) {
|
|||||||
export const ZAI_DEFAULT_MODEL_REF = "zai/glm-4.7";
|
export const ZAI_DEFAULT_MODEL_REF = "zai/glm-4.7";
|
||||||
export const XIAOMI_DEFAULT_MODEL_REF = "xiaomi/mimo-v2-flash";
|
export const XIAOMI_DEFAULT_MODEL_REF = "xiaomi/mimo-v2-flash";
|
||||||
export const OPENROUTER_DEFAULT_MODEL_REF = "openrouter/auto";
|
export const OPENROUTER_DEFAULT_MODEL_REF = "openrouter/auto";
|
||||||
|
export const TOGETHER_DEFAULT_MODEL_REF = "together/zai-org/GLM-4.7";
|
||||||
export const VERCEL_AI_GATEWAY_DEFAULT_MODEL_REF = "vercel-ai-gateway/anthropic/claude-opus-4.6";
|
export const VERCEL_AI_GATEWAY_DEFAULT_MODEL_REF = "vercel-ai-gateway/anthropic/claude-opus-4.6";
|
||||||
|
|
||||||
export async function setZaiApiKey(key: string, agentDir?: string) {
|
export async function setZaiApiKey(key: string, agentDir?: string) {
|
||||||
@@ -205,6 +206,18 @@ export async function setOpencodeZenApiKey(key: string, agentDir?: string) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export async function setTogetherApiKey(key: string, agentDir?: string) {
|
||||||
|
upsertAuthProfile({
|
||||||
|
profileId: "together:default",
|
||||||
|
credential: {
|
||||||
|
type: "api_key",
|
||||||
|
provider: "together",
|
||||||
|
key,
|
||||||
|
},
|
||||||
|
agentDir: resolveAuthAgentDir(agentDir),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
export function setQianfanApiKey(key: string, agentDir?: string) {
|
export function setQianfanApiKey(key: string, agentDir?: string) {
|
||||||
upsertAuthProfile({
|
upsertAuthProfile({
|
||||||
profileId: "qianfan:default",
|
profileId: "qianfan:default",
|
||||||
|
|||||||
@@ -19,15 +19,17 @@ export {
|
|||||||
applyOpenrouterProviderConfig,
|
applyOpenrouterProviderConfig,
|
||||||
applySyntheticConfig,
|
applySyntheticConfig,
|
||||||
applySyntheticProviderConfig,
|
applySyntheticProviderConfig,
|
||||||
|
applyTogetherConfig,
|
||||||
|
applyTogetherProviderConfig,
|
||||||
applyVeniceConfig,
|
applyVeniceConfig,
|
||||||
applyVeniceProviderConfig,
|
applyVeniceProviderConfig,
|
||||||
applyVercelAiGatewayConfig,
|
applyVercelAiGatewayConfig,
|
||||||
applyVercelAiGatewayProviderConfig,
|
applyVercelAiGatewayProviderConfig,
|
||||||
|
applyXaiConfig,
|
||||||
|
applyXaiProviderConfig,
|
||||||
applyXiaomiConfig,
|
applyXiaomiConfig,
|
||||||
applyXiaomiProviderConfig,
|
applyXiaomiProviderConfig,
|
||||||
applyZaiConfig,
|
applyZaiConfig,
|
||||||
applyXaiConfig,
|
|
||||||
applyXaiProviderConfig,
|
|
||||||
} from "./onboard-auth.config-core.js";
|
} from "./onboard-auth.config-core.js";
|
||||||
export {
|
export {
|
||||||
applyMinimaxApiConfig,
|
applyMinimaxApiConfig,
|
||||||
@@ -55,6 +57,7 @@ export {
|
|||||||
setOpencodeZenApiKey,
|
setOpencodeZenApiKey,
|
||||||
setOpenrouterApiKey,
|
setOpenrouterApiKey,
|
||||||
setSyntheticApiKey,
|
setSyntheticApiKey,
|
||||||
|
setTogetherApiKey,
|
||||||
setVeniceApiKey,
|
setVeniceApiKey,
|
||||||
setVercelAiGatewayApiKey,
|
setVercelAiGatewayApiKey,
|
||||||
setXiaomiApiKey,
|
setXiaomiApiKey,
|
||||||
@@ -64,6 +67,7 @@ export {
|
|||||||
VERCEL_AI_GATEWAY_DEFAULT_MODEL_REF,
|
VERCEL_AI_GATEWAY_DEFAULT_MODEL_REF,
|
||||||
XIAOMI_DEFAULT_MODEL_REF,
|
XIAOMI_DEFAULT_MODEL_REF,
|
||||||
ZAI_DEFAULT_MODEL_REF,
|
ZAI_DEFAULT_MODEL_REF,
|
||||||
|
TOGETHER_DEFAULT_MODEL_REF,
|
||||||
XAI_DEFAULT_MODEL_REF,
|
XAI_DEFAULT_MODEL_REF,
|
||||||
} from "./onboard-auth.credentials.js";
|
} from "./onboard-auth.credentials.js";
|
||||||
export {
|
export {
|
||||||
|
|||||||
@@ -22,6 +22,7 @@ import {
|
|||||||
applyOpenrouterConfig,
|
applyOpenrouterConfig,
|
||||||
applySyntheticConfig,
|
applySyntheticConfig,
|
||||||
applyVeniceConfig,
|
applyVeniceConfig,
|
||||||
|
applyTogetherConfig,
|
||||||
applyVercelAiGatewayConfig,
|
applyVercelAiGatewayConfig,
|
||||||
applyXaiConfig,
|
applyXaiConfig,
|
||||||
applyXiaomiConfig,
|
applyXiaomiConfig,
|
||||||
@@ -38,6 +39,7 @@ import {
|
|||||||
setSyntheticApiKey,
|
setSyntheticApiKey,
|
||||||
setXaiApiKey,
|
setXaiApiKey,
|
||||||
setVeniceApiKey,
|
setVeniceApiKey,
|
||||||
|
setTogetherApiKey,
|
||||||
setVercelAiGatewayApiKey,
|
setVercelAiGatewayApiKey,
|
||||||
setXiaomiApiKey,
|
setXiaomiApiKey,
|
||||||
setZaiApiKey,
|
setZaiApiKey,
|
||||||
@@ -544,6 +546,29 @@ export async function applyNonInteractiveAuthChoice(params: {
|
|||||||
return applyOpencodeZenConfig(nextConfig);
|
return applyOpencodeZenConfig(nextConfig);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (authChoice === "together-api-key") {
|
||||||
|
const resolved = await resolveNonInteractiveApiKey({
|
||||||
|
provider: "together",
|
||||||
|
cfg: baseConfig,
|
||||||
|
flagValue: opts.togetherApiKey,
|
||||||
|
flagName: "--together-api-key",
|
||||||
|
envVar: "TOGETHER_API_KEY",
|
||||||
|
runtime,
|
||||||
|
});
|
||||||
|
if (!resolved) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
if (resolved.source !== "profile") {
|
||||||
|
await setTogetherApiKey(resolved.key);
|
||||||
|
}
|
||||||
|
nextConfig = applyAuthProfileConfig(nextConfig, {
|
||||||
|
profileId: "together:default",
|
||||||
|
provider: "together",
|
||||||
|
mode: "api_key",
|
||||||
|
});
|
||||||
|
return applyTogetherConfig(nextConfig);
|
||||||
|
}
|
||||||
|
|
||||||
if (
|
if (
|
||||||
authChoice === "oauth" ||
|
authChoice === "oauth" ||
|
||||||
authChoice === "chutes" ||
|
authChoice === "chutes" ||
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ export type AuthChoice =
|
|||||||
| "kimi-code-api-key"
|
| "kimi-code-api-key"
|
||||||
| "synthetic-api-key"
|
| "synthetic-api-key"
|
||||||
| "venice-api-key"
|
| "venice-api-key"
|
||||||
|
| "together-api-key"
|
||||||
| "codex-cli"
|
| "codex-cli"
|
||||||
| "apiKey"
|
| "apiKey"
|
||||||
| "gemini-api-key"
|
| "gemini-api-key"
|
||||||
@@ -80,6 +81,7 @@ export type OnboardOptions = {
|
|||||||
minimaxApiKey?: string;
|
minimaxApiKey?: string;
|
||||||
syntheticApiKey?: string;
|
syntheticApiKey?: string;
|
||||||
veniceApiKey?: string;
|
veniceApiKey?: string;
|
||||||
|
togetherApiKey?: string;
|
||||||
opencodeZenApiKey?: string;
|
opencodeZenApiKey?: string;
|
||||||
xaiApiKey?: string;
|
xaiApiKey?: string;
|
||||||
qianfanApiKey?: string;
|
qianfanApiKey?: string;
|
||||||
|
|||||||
Reference in New Issue
Block a user