1pub fn teammate_system_prompt_template() -> &'static str {
8 include_str!("../assets/teammate_system_prompt.md")
9}
10
11pub fn sub_agent_system_prompt_template() -> &'static str {
13 include_str!("../assets/sub_agent_system_prompt.md")
14}
15
16pub fn default_system_prompt() -> &'static str {
18 include_str!("../assets/system_prompt_default.md")
19}
20
21pub fn default_memory() -> &'static str {
23 include_str!("../assets/memory_default.md")
24}
25
26pub fn default_soul() -> &'static str {
28 include_str!("../assets/soul_default.md")
29}
30
31pub fn default_agent_md() -> &'static str {
33 include_str!("../assets/agent_md_default.md")
34}