make prompt append available

This commit is contained in:
YeonGyu-Kim
2025-12-25 01:49:16 +09:00
parent 0227644f3e
commit e50ca9b4d3
3 changed files with 12 additions and 2 deletions
+3 -1
View File
@@ -21,6 +21,8 @@ export type OverridableAgentName =
export type AgentName = BuiltinAgentName
export type AgentOverrideConfig = Partial<AgentConfig>
export type AgentOverrideConfig = Partial<AgentConfig> & {
prompt_append?: string
}
export type AgentOverrides = Partial<Record<OverridableAgentName, AgentOverrideConfig>>