We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a68fedd commit b5a4671Copy full SHA for b5a4671
2 files changed
packages/opencode/src/session/prompt/trinity.txt
packages/opencode/src/session/system.ts
@@ -8,7 +8,6 @@ import PROMPT_BEAST from "./prompt/beast.txt"
8
import PROMPT_GEMINI from "./prompt/gemini.txt"
9
10
import PROMPT_CODEX from "./prompt/codex_header.txt"
11
-import PROMPT_TRINITY from "./prompt/trinity.txt"
12
import type { Provider } from "@/provider/provider"
13
14
export namespace SystemPrompt {
@@ -22,7 +21,6 @@ export namespace SystemPrompt {
22
21
return [PROMPT_BEAST]
23
if (model.api.id.includes("gemini-")) return [PROMPT_GEMINI]
24
if (model.api.id.includes("claude")) return [PROMPT_ANTHROPIC]
25
- if (model.api.id.toLowerCase().includes("trinity")) return [PROMPT_TRINITY]
26
return [PROMPT_ANTHROPIC_WITHOUT_TODO]
27
}
28
0 commit comments