12 lines
266 B
C++
12 lines
266 B
C++
|
#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
|