mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 13:38:31 +00:00
Default to the full agent with built-in tools, expose client function tools as an MCP server, surface tool calls as OpenAI tool_use, resolve workspace cwd from the request, and bump context windows. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
63 lines
3.4 KiB
JavaScript
63 lines
3.4 KiB
JavaScript
export default {
|
|
id: "devin-cli",
|
|
alias: "dv",
|
|
aliases: ["devin"],
|
|
uiAlias: "dv",
|
|
display: {
|
|
name: "Devin CLI",
|
|
icon: "smart_toy",
|
|
color: "#6366F1",
|
|
textIcon: "DV",
|
|
website: "https://devin.ai",
|
|
notice: {
|
|
signupUrl: "https://cli.devin.ai",
|
|
text: "Install the Devin CLI and run `devin auth login` first. Spawns the `devin` binary via ACP/stdio — no API key field. Uses the default agent with built-in fs/shell tools (DEVIN_PERMISSION_MODE=bypass). Local use only. Set CLI_DEVIN_AGENT_TYPE=summarizer for a tool-less mode.",
|
|
},
|
|
},
|
|
category: "free",
|
|
authType: "none",
|
|
noAuth: true,
|
|
authModes: ["none"],
|
|
transport: {
|
|
baseUrl: "devin://acp/stdio",
|
|
format: "openai",
|
|
},
|
|
models: [
|
|
{ id: "swe-1.6-fast", name: "SWE-1.6 Fast" },
|
|
{ id: "swe-1.6", name: "SWE-1.6" },
|
|
{ id: "swe-1.5-fast", name: "SWE-1.5 Fast" },
|
|
{ id: "swe-1.5", name: "SWE-1.5" },
|
|
{ id: "claude-opus-4.7-max", name: "Claude Opus 4.7 Max", contextLength: 200000 },
|
|
{ id: "claude-opus-4.7-high", name: "Claude Opus 4.7 High", contextLength: 200000 },
|
|
{ id: "claude-opus-4.7-medium", name: "Claude Opus 4.7 Medium", contextLength: 200000 },
|
|
{ id: "claude-opus-4.7-low", name: "Claude Opus 4.7 Low", contextLength: 200000 },
|
|
{ id: "claude-sonnet-4.6-thinking-1m", name: "Claude Sonnet 4.6 Thinking 1M", contextLength: 1000000 },
|
|
{ id: "claude-sonnet-4.6-thinking", name: "Claude Sonnet 4.6 Thinking", contextLength: 200000 },
|
|
{ id: "claude-sonnet-4.6", name: "Claude Sonnet 4.6", contextLength: 200000 },
|
|
{ id: "claude-opus-4.6-thinking", name: "Claude Opus 4.6 Thinking", contextLength: 200000 },
|
|
{ id: "claude-opus-4.6", name: "Claude Opus 4.6", contextLength: 200000 },
|
|
{ id: "claude-sonnet-4.5", name: "Claude Sonnet 4.5", contextLength: 200000 },
|
|
{ id: "claude-haiku-4.5", name: "Claude Haiku 4.5", contextLength: 200000 },
|
|
{ id: "gpt-5.5-xhigh", name: "GPT-5.5 XHigh", contextLength: 200000 },
|
|
{ id: "gpt-5.5-high", name: "GPT-5.5 High", contextLength: 200000 },
|
|
{ id: "gpt-5.5-medium", name: "GPT-5.5 Medium", contextLength: 200000 },
|
|
{ id: "gpt-5.5-low", name: "GPT-5.5 Low", contextLength: 200000 },
|
|
{ id: "gpt-5.4-high", name: "GPT-5.4 High", contextLength: 200000 },
|
|
{ id: "gpt-5.4-medium", name: "GPT-5.4 Medium", contextLength: 200000 },
|
|
{ id: "gpt-5.4-low", name: "GPT-5.4 Low", contextLength: 200000 },
|
|
{ id: "gpt-5.3-codex-high", name: "GPT-5.3 Codex High", contextLength: 200000 },
|
|
{ id: "gpt-5.3-codex-medium", name: "GPT-5.3 Codex Medium", contextLength: 200000 },
|
|
{ id: "gpt-5.3-codex-low", name: "GPT-5.3 Codex Low", contextLength: 200000 },
|
|
{ id: "gpt-5.2-high", name: "GPT-5.2 High", contextLength: 200000 },
|
|
{ id: "gpt-5.2-medium", name: "GPT-5.2 Medium", contextLength: 200000 },
|
|
{ id: "gpt-5.2-low", name: "GPT-5.2 Low", contextLength: 200000 },
|
|
{ id: "gemini-3.1-pro-high", name: "Gemini 3.1 Pro High", contextLength: 1000000 },
|
|
{ id: "gemini-3.1-pro-low", name: "Gemini 3.1 Pro Low", contextLength: 1000000 },
|
|
{ id: "gemini-3.0-flash-high", name: "Gemini 3 Flash High", contextLength: 1000000 },
|
|
{ id: "gemini-2.5-pro", name: "Gemini 2.5 Pro", contextLength: 1000000 },
|
|
{ id: "deepseek-v4", name: "DeepSeek V4", contextLength: 1048576 },
|
|
{ id: "kimi-k2.6", name: "Kimi K2.6", contextLength: 262144 },
|
|
{ id: "glm-5.1", name: "GLM-5.1", contextLength: 204800 },
|
|
],
|
|
};
|