UNPKG

openclaw

Version:

Multi-channel AI gateway with extensible messaging integrations

81 lines (80 loc) 1.68 kB
//#region extensions/together/openclaw.plugin.json var modelCatalog = { "providers": { "together": { "baseUrl": "https://api.together.xyz/v1", "api": "openai-completions", "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": .2, "cacheWrite": 4.5 } }, { "id": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "name": "Llama 3.3 70B Instruct Turbo", "input": ["text"], "contextWindow": 131072, "maxTokens": 8192, "cost": { "input": .88, "output": .88, "cacheRead": .88, "cacheWrite": .88 } }, { "id": "deepseek-ai/DeepSeek-V4-Pro", "name": "DeepSeek V4 Pro", "reasoning": true, "input": ["text"], "contextWindow": 512e3, "maxTokens": 8192, "cost": { "input": 2.1, "output": 4.4, "cacheRead": .2, "cacheWrite": 4.4 } }, { "id": "Qwen/Qwen2.5-7B-Instruct-Turbo", "name": "Qwen2.5 7B Instruct Turbo", "input": ["text"], "contextWindow": 32768, "maxTokens": 8192, "cost": { "input": .3, "output": .3, "cacheRead": .3, "cacheWrite": .3 } }, { "id": "zai-org/GLM-5.1", "name": "GLM 5.1 FP4", "reasoning": true, "input": ["text"], "contextWindow": 202752, "maxTokens": 8192, "cost": { "input": 1.4, "output": 4.4, "cacheRead": 1.4, "cacheWrite": 4.4 } } ] } }, "discovery": { "together": "static" } }; //#endregion export { modelCatalog as t };