Files
openclaw/extensions/together/openclaw.plugin.json
Peter Steinberger 52a92a1b0a feat(providers): refresh onboarding defaults to current models (#113973)
* feat(providers): refresh onboarding defaults to current models

* chore: drop changelog edit (release generation owns it)
2026-07-25 19:10:26 -07:00

117 lines
2.8 KiB
JSON

{
"id": "together",
"activation": {
"onStartup": false
},
"enabledByDefault": true,
"providers": ["together"],
"providerRequest": {
"providers": {
"together": {
"family": "together"
}
}
},
"setup": {
"providers": [
{
"id": "together",
"envVars": ["TOGETHER_API_KEY"]
}
]
},
"providerAuthChoices": [
{
"provider": "together",
"method": "api-key",
"choiceId": "together-api-key",
"appGuidedSecret": true,
"choiceLabel": "Together AI API key",
"groupId": "together",
"groupLabel": "Together AI",
"groupHint": "API key",
"optionKey": "togetherApiKey",
"cliFlag": "--together-api-key",
"cliOption": "--together-api-key <key>",
"cliDescription": "Together AI API key"
}
],
"contracts": {
"videoGenerationProviders": ["together"]
},
"modelCatalog": {
"providers": {
"together": {
"baseUrl": "https://api.together.xyz/v1",
"api": "openai-completions",
"defaultModel": "moonshotai/Kimi-K2.6",
"models": [
{
"id": "moonshotai/Kimi-K2.6",
"name": "Kimi K2.6 FP4",
"reasoning": true,
"input": ["text", "image"],
"contextWindow": 262144,
"maxTokens": 32768,
"cost": {
"input": 1.2,
"output": 4.5,
"cacheRead": 0.2,
"cacheWrite": 0
}
},
{
"id": "meta-llama/Llama-3.3-70B-Instruct-Turbo",
"name": "Llama 3.3 70B Instruct Turbo",
"input": ["text"],
"contextWindow": 131072,
"maxTokens": 8192,
"cost": {
"input": 1.04,
"output": 1.04,
"cacheRead": 1.04,
"cacheWrite": 0
}
},
{
"id": "deepseek-ai/DeepSeek-V4-Pro",
"name": "DeepSeek V4 Pro",
"reasoning": true,
"input": ["text"],
"contextWindow": 512000,
"maxTokens": 384000,
"cost": {
"input": 1.74,
"output": 3.48,
"cacheRead": 0.2,
"cacheWrite": 0
}
},
{
"id": "zai-org/GLM-5.2",
"name": "GLM 5.2 FP4",
"reasoning": true,
"input": ["text"],
"contextWindow": 262144,
"maxTokens": 131072,
"cost": {
"input": 1.4,
"output": 4.4,
"cacheRead": 0.26,
"cacheWrite": 0
}
}
]
}
},
"discovery": {
"together": "refreshable"
}
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {}
}
}