This repository was archived by the owner on Apr 9, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodels.conf
More file actions
137 lines (113 loc) · 4.54 KB
/
models.conf
File metadata and controls
137 lines (113 loc) · 4.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# ~/opencode/models.conf
# 模型配置文件 - 复制为 models.conf 并按需修改
# 格式: KEY=value (不要加引号)
# =========================================
# 主模型 (opencode.json)
# =========================================
# OpenCode 默认使用的模型
MAIN_MODEL=opencode/claude-opus-4-6
# =========================================
# Agent 模型 (oh-my-opencode.json)
# =========================================
#
# 核心 Agents:
# - sisyphus: 主编排器,协调所有任务
# - oracle: 只读顾问,深度推理和架构设计
# - librarian: 文档研究,外部库和 API 查询
# - explore: 代码搜索,快速 grep 式探索
#
# v3.x 新增 Agents:
# - hephaestus: 自主深度工作者,目标导向,端到端完成 (v3.2.0)
# - prometheus: 规划 agent,生成详细执行计划
# - metis: 预规划顾问,分析需求中的隐藏意图和歧义
# - momus: 计划审查,评估计划的严谨性和完整性
# - atlas: 高级编排器
# - sisyphus-junior: 轻量编排器,专注执行不委派
#
# =========================================
# Sisyphus - 主编排器(协调任务、委派子 agent)
SISYPHUS_MODEL=opencode/claude-opus-4-6
# Hephaestus - 自主深度工作者(目标导向,端到端完成)
HEPHAESTUS_MODEL=opencode/gpt-5.3-codex
# Oracle - 只读顾问(深度推理、架构设计、调试)
ORACLE_MODEL=opencode/gpt-5.4
# Librarian - 文档研究(外部库、官方文档、GitHub 示例)
LIBRARIAN_MODEL=opencode/claude-haiku-4-5
# Explore - 代码搜索(快速 grep 式探索,便宜模型即可)
EXPLORE_MODEL=opencode/claude-haiku-4-5
# Multimodal Looker - 多媒体分析(PDF、图片、图表)
MULTIMODAL_MODEL=opencode/gpt-5.4
# Prometheus - 规划 agent(生成详细执行计划)
PROMETHEUS_MODEL=opencode/gpt-5.4
# Metis - 预规划顾问(分析需求中的隐藏意图和歧义)
METIS_MODEL=opencode/gpt-5.4
# Momus - 计划审查(评估计划的严谨性和完整性)
MOMUS_MODEL=opencode/gpt-5.4
# Atlas - 高级编排器
ATLAS_MODEL=opencode/claude-sonnet-4-6
# Sisyphus Junior - 轻量编排器(专注执行,不委派)
SISYPHUS_JUNIOR_MODEL=opencode/claude-sonnet-4-6
# =========================================
# Category 模型 (oh-my-opencode.json)
# =========================================
#
# task(category="xxx") 委派时使用的模型
#
# =========================================
# visual-engineering - 前端、UI/UX、设计、样式、动画
VISUAL_ENGINEERING_MODEL=opencode/gemini-3-pro
# ultrabrain - 高难度逻辑推理任务
ULTRABRAIN_MODEL=opencode/gpt-5.3-codex
# deep - 目标导向自主深度问题解决
DEEP_MODEL=opencode/gpt-5.3-codex
# artistry - 创意型复杂问题解决
ARTISTRY_MODEL=opencode/gemini-3-pro
# quick - 简单任务(单文件修改、拼写修正)
QUICK_MODEL=opencode/claude-haiku-4-5
# unspecified-low - 不属于其他分类的低难度任务
UNSPECIFIED_LOW_MODEL=opencode/claude-sonnet-4-6
# unspecified-high - 不属于其他分类的高难度任务
UNSPECIFIED_HIGH_MODEL=opencode/claude-opus-4-6
# writing - 文档、技术写作
WRITING_MODEL=opencode/gemini-3-flash
# =========================================
# 可用模型列表
# =========================================
#
# OpenCode Zen (opencode/):
#
# Anthropic:
# - opencode/claude-opus-4-6 (最强,默认主模型)
# - opencode/claude-opus-4-5 (上代旗舰)
# - opencode/claude-sonnet-4-6 (快速,adaptive thinking)
# - opencode/claude-sonnet-4-5 (快速)
# - opencode/claude-sonnet-4 (上代)
# - opencode/claude-haiku-4-5 (便宜)
#
# OpenAI:
# - opencode/gpt-5.4 (最新旗舰推理)
# - opencode/gpt-5.3-codex (代码推理,深度自主工作)
# - opencode/gpt-5.2 (上代推理)
#
# Google:
# - opencode/gemini-3.1-pro (多模态,medium reasoning)
# - opencode/gemini-3-pro (多模态)
# - opencode/gemini-3-flash (快速多模态)
#
# 其他:
# - opencode/minimax-m2.5 (快速)
# - opencode/minimax-m2.5-free (免费限时)
# - opencode/minimax-m2.1 (快速)
# - opencode/glm-5 (智谱)
# - opencode/kimi-k2.5 (月之暗面)
# - opencode/qwen3-coder (通义 480B)
# - opencode/big-pickle (免费限时)
#
# 原始 Provider:
# - anthropic/claude-opus-4-6
# - anthropic/claude-sonnet-4-6
# - openai/gpt-5.4
# - openai/gpt-5.3-codex
# - google/gemini-3.1-pro
# - google/gemini-3-pro
# - google/gemini-3-flash