chore: remove duplicate prompt file

This commit is contained in:
Aiden Cline
2026-01-19 23:22:57 -06:00
parent 0d49df46ef
commit 419004992d
3 changed files with 3 additions and 76 deletions

View File

@@ -13,8 +13,7 @@ import PROMPT_BEAST from "./prompt/beast.txt"
import PROMPT_GEMINI from "./prompt/gemini.txt"
import PROMPT_ANTHROPIC_SPOOF from "./prompt/anthropic_spoof.txt"
import PROMPT_CODEX from "./prompt/codex.txt"
import PROMPT_CODEX_INSTRUCTIONS from "./prompt/codex_header.txt"
import PROMPT_CODEX from "./prompt/codex_header.txt"
import type { Provider } from "@/provider/provider"
import { Flag } from "@/flag/flag"
@@ -25,7 +24,7 @@ export namespace SystemPrompt {
}
export function instructions() {
return PROMPT_CODEX_INSTRUCTIONS.trim()
return PROMPT_CODEX.trim()
}
export function provider(model: Provider.Model) {