humanus.cpp/schema.cpp

12 lines
266 B
C++
Raw Normal View History

2025-03-17 01:58:37 +08:00
#include "schema.h"
namespace humanus {
std::map<AgentState, std::string> agent_state_map = {
{AgentState::IDLE, "IDLE"},
{AgentState::RUNNING, "RUNNING"},
{AgentState::FINISHED, "FINISHED"},
{AgentState::ERROR, "ERROR"}
};
} // namespace humanus