# auto-coder **Repository Path**: orcadev/auto-coder ## Basic Information - **Project Name**: auto-coder - **Description**: 自动化编码工具 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 3 - **Created**: 2026-08-16 - **Last Updated**: 2026-08-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

auto-coder

Auto-Coder (powered by Byzer-LLM)

中文 |

--- *Latest News* 🔥 - [2025/01] Release Auto-Coder 0.1.208 - [2024/09] Release Auto-Coder 0.1.163 - [2024/08] Release Auto-Coder 0.1.143 - [2024/07] Release Auto-Coder 0.1.115 - [2024/06] Release Auto-Coder 0.1.82 - [2024/05] Release Auto-Coder 0.1.73 - [2024/04] Release Auto-Coder 0.1.46 - [2024/03] Release Auto-Coder 0.1.25 - [2024/03] Release Auto-Coder 0.1.24 --- ## Installation ```shell conda create --name autocoder python=3.10.11 conda activate autocoder pip install -U auto-coder auto-coder.chat ``` ## Tutorial 0. [Auto-Coder.Chat: 通向智能编程之路](https://uelng8wukz.feishu.cn/wiki/QIpkwpQo2iSdkwk9nP6cNSPlnPc) ## Models Auto-Coder ships with a built-in model registry (`src/autocoder/models.py`) for the `lite` product mode. You can list available models with `/models /list` in the chat or `auto-coder.chat --model --product_mode lite`. Built-in providers include DeepSeek, Volcengine Ark, OpenRouter, and **[OrcaRouter](https://www.orcarouter.ai)** (an OpenAI-compatible LLM routing gateway, base `https://api.orcarouter.ai/v1`): - `orcarouter/fusion` — large-context routing, good for design/review - `orcarouter/fusion-flash` — fast routing, good for coding - `orcarouter/fusion-mini` — lightweight routing To use OrcaRouter, add its API key (prefix `sk-orca-`) for the model you picked: ```shell # in Auto-Coder chat /models /add orcarouter/fusion-flash ``` Then select it with `--model orcarouter/fusion-flash`.