15 lines
273 B
C
15 lines
273 B
C
|
|
#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);
|