All configuration is now done exclusively through mimi_secrets.h at build time. Removed NVS read/write logic, CLI config commands (wifi_set, set_tg_token, set_api_key, set_model, set_proxy, clear_proxy, set_search_key), and setter functions from all modules. CLI retains debug/maintenance commands only. Updated all documentation to reflect the change. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
21 lines
458 B
C
21 lines
458 B
C
#pragma once
|
|
|
|
#include "esp_err.h"
|
|
#include <stddef.h>
|
|
|
|
/**
|
|
* Initialize web search tool.
|
|
*/
|
|
esp_err_t tool_web_search_init(void);
|
|
|
|
/**
|
|
* Execute a web search.
|
|
*
|
|
* @param input_json JSON string with "query" field
|
|
* @param output Output buffer for formatted search results
|
|
* @param output_size Size of output buffer
|
|
* @return ESP_OK on success
|
|
*/
|
|
esp_err_t tool_web_search_execute(const char *input_json, char *output, size_t output_size);
|
|
|