Skip to main content

hh_cli/core/
system_prompt.rs

1pub fn default_system_prompt() -> String {
2    include_str!("prompts/build_system_prompt.md").to_string()
3}
4
5pub fn build_system_prompt() -> String {
6    include_str!("prompts/build_system_prompt.md").to_string()
7}
8
9pub fn plan_system_prompt() -> String {
10    include_str!("prompts/plan_system_prompt.md").to_string()
11}
12
13pub fn explorer_system_prompt() -> String {
14    include_str!("prompts/explorer_system_prompt.md").to_string()
15}
16
17pub fn general_system_prompt() -> String {
18    include_str!("prompts/general_system_prompt.md").to_string()
19}