#include "schema.h" namespace humanus { std::map agent_state_map = { {AgentState::IDLE, "IDLE"}, {AgentState::RUNNING, "RUNNING"}, {AgentState::FINISHED, "FINISHED"}, {AgentState::ERR, "ERROR"} }; } // namespace humanus