humanus.cpp/prompt.h

39 lines
794 B
C
Raw Normal View History

2025-03-16 17:17:01 +08:00
#ifndef HUMANUS_PROMPT_H
#define HUMANUS_PROMPT_H
namespace humanus {
namespace prompt {
2025-03-19 18:44:54 +08:00
namespace humanus {
2025-03-17 01:58:37 +08:00
extern const char* SYSTEM_PROMPT;
extern const char* NEXT_STEP_PROMPT;
2025-03-19 18:44:54 +08:00
} // namespace humanus
2025-03-16 17:17:01 +08:00
namespace planning {
2025-03-17 01:58:37 +08:00
extern const char* PLANNING_SYSTEM_PROMPT;
extern const char* NEXT_STEP_PROMPT;
2025-03-16 17:17:01 +08:00
} // namespace planning
namespace swe {
2025-03-17 01:58:37 +08:00
extern const char* SYSTEM_PROMPT;
extern const char* NEXT_STEP_TEMPLATE;
2025-03-16 17:17:01 +08:00
} // namespace swe
namespace toolcall {
2025-03-17 01:58:37 +08:00
extern const char* SYSTEM_PROMPT;
extern const char* NEXT_STEP_PROMPT;
2025-03-19 18:44:54 +08:00
extern const char* TOOL_HINT_TEMPLATE;
2025-03-16 17:17:01 +08:00
} // namespace toolcall
} // namespace prompt
2025-03-23 14:35:54 +08:00
namespace mem0 {
extern const char* FACT_EXTRACTION_PROMPT;
extern const char* UPDATE_MEMORY_PROMPT;
} // namespace mem0
2025-03-16 17:17:01 +08:00
} // namespace humanus
#endif // HUMANUS_PROMPT_H