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
|
|
|
|
|
|
|
|
} // namespace humanus
|
|
|
|
|
|
|
|
#endif // HUMANUS_PROMPT_H
|