mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-03-31 14:22:27 +00:00
53 lines
1.8 KiB
TypeScript
53 lines
1.8 KiB
TypeScript
import { Ripgrep } from "../file/ripgrep"
|
|
|
|
import { Instance } from "../project/instance"
|
|
|
|
import PROMPT_ANTHROPIC from "./prompt/anthropic.txt"
|
|
import PROMPT_ANTHROPIC_WITHOUT_TODO from "./prompt/qwen.txt"
|
|
import PROMPT_BEAST from "./prompt/beast.txt"
|
|
import PROMPT_GEMINI from "./prompt/gemini.txt"
|
|
|
|
import PROMPT_CODEX from "./prompt/codex_header.txt"
|
|
import type { Provider } from "@/provider/provider"
|
|
|
|
export namespace SystemPrompt {
|
|
export function instructions() {
|
|
return PROMPT_CODEX.trim()
|
|
}
|
|
|
|
export function provider(model: Provider.Model) {
|
|
if (model.api.id.includes("gpt-5")) return [PROMPT_CODEX]
|
|
if (model.api.id.includes("gpt-") || model.api.id.includes("o1") || model.api.id.includes("o3"))
|
|
return [PROMPT_BEAST]
|
|
if (model.api.id.includes("gemini-")) return [PROMPT_GEMINI]
|
|
if (model.api.id.includes("claude")) return [PROMPT_ANTHROPIC]
|
|
return [PROMPT_ANTHROPIC_WITHOUT_TODO]
|
|
}
|
|
|
|
export async function environment(model: Provider.Model) {
|
|
const project = Instance.project
|
|
return [
|
|
[
|
|
`You are powered by the model named ${model.api.id}. The exact model ID is ${model.providerID}/${model.api.id}`,
|
|
`Here is some useful information about the environment you are running in:`,
|
|
`<env>`,
|
|
` Working directory: ${Instance.directory}`,
|
|
` Is directory a git repo: ${project.vcs === "git" ? "yes" : "no"}`,
|
|
` Platform: ${process.platform}`,
|
|
` Today's date: ${new Date().toDateString()}`,
|
|
`</env>`,
|
|
`<files>`,
|
|
` ${
|
|
project.vcs === "git" && false
|
|
? await Ripgrep.tree({
|
|
cwd: Instance.directory,
|
|
limit: 200,
|
|
})
|
|
: ""
|
|
}`,
|
|
`</files>`,
|
|
].join("\n"),
|
|
]
|
|
}
|
|
}
|