Files
mimiclaw/main/agent/agent_loop.h

15 lines
273 B
C
Raw Normal View History

#pragma once
#include "esp_err.h"
/**
* Initialize the agent loop.
*/
esp_err_t agent_loop_init(void);
/**
* Start the agent loop task (runs on Core 1).
* Consumes from inbound queue, calls Claude API, pushes to outbound queue.
*/
esp_err_t agent_loop_start(void);