27#include "../inference/tool_call_serialize.h"
29#include <nlohmann/json.hpp>
79 }
catch (
const std::filesystem::filesystem_error& e) {
81 s_log->error(
"c_api filesystem_error: {}", e.what());
83 }
catch (
const nlohmann::json::exception& e) {
85 s_log->error(
"c_api json::exception: {}", e.what());
87 }
catch (
const std::exception& e) {
89 s_log->error(
"c_api std::exception: {}", e.what());
107 if (!src) {
return nullptr; }
108 size_t len = std::strlen(src) + 1;
110 if (dst) { std::memcpy(dst, src, len); }
134static thread_local std::string s_last_error_cache;
135static thread_local char s_pre_create_error[512] =
"";
151 if (!handle) {
return s_pre_create_error; }
154 return s_last_error_cache.c_str();
216 auto* backend = h->
orchestrator->get_backend(tier_name);
218 throw std::runtime_error(
219 "no backend for tier: " + std::string(tier_name));
221 if (!backend->is_active()) {
222 throw std::runtime_error(
223 "model not active: " + std::string(tier_name));
242 if (handle ==
nullptr) {
245 entropic::log::init(spdlog::level::info);
249 if (engine ==
nullptr) {
258 static std::atomic<int> s_log_id_counter{0};
259 engine->
log_id = ++s_log_id_counter;
261 s_log->info(
"entropic_create() — v{} (log_id={})",
262 CONFIG_ENTROPIC_VERSION_STRING, engine->log_id);
315 return cached->second;
320 if (cfg && !cfg->allowed_tools.empty()) {
321 return cfg->allowed_tools;
337 const nlohmann::json& all_tools,
338 const std::vector<std::string>& allowed) {
339 std::vector<std::string> result;
340 for (
const auto& tool : all_tools) {
341 std::string name = tool.value(
"name",
"");
342 bool pass = allowed.empty()
343 || std::find(allowed.begin(), allowed.end(), name)
345 if (pass) { result.push_back(tool.dump()); }
372 if (!h || !h->server_manager) {
return 1; }
374 std::string tier_name = tier ? tier :
"";
375 auto all_json = h->server_manager->list_tools();
376 auto all_tools = nlohmann::json::parse(all_json,
nullptr,
false);
379 if (!all_tools.is_array() || all_tools.empty() || tool_jsons.empty()) {
383 nlohmann::json arr = nlohmann::json::array();
384 for (
const auto& tj : tool_jsons) {
385 auto obj = nlohmann::json::parse(tj,
nullptr,
false);
386 if (!obj.is_discarded()) { arr.push_back(std::move(obj)); }
388 *result = strdup(arr.dump().c_str());
405 h->
engine->set_external_interrupt(
426 h->
engine->set_stream_observer(
445 h->
engine->set_queue_observer(
464 h->
engine->set_state_observer(
523 const std::filesystem::path& data_dir,
524 const std::string& shared_prefix) {
528 auto parsed = entropic::prompts::resolve_tier_identity_full(
529 tier, name, data_dir);
530 info.system_prompt = shared_prefix + parsed.body;
531 info.explicit_completion = !tier.auto_chain.has_value();
535 info.max_iterations_override =
536 parsed.frontmatter.max_iterations;
537 info.max_tool_calls_per_turn_override =
538 parsed.frontmatter.max_tool_calls_per_turn;
539 h->
engine->set_tier_info(name, info);
564 const char* parent_id,
const char* delegating_tier,
565 const char* target_tier,
const char* task,
int max_turns,
566 std::string& delegation_id, std::string& child_conversation_id,
569 if (sb ==
nullptr) {
return false; }
571 parent_id ? parent_id :
"",
572 delegating_tier ? delegating_tier :
"",
573 target_tier ? target_tier :
"",
575 max_turns, delegation_id, child_conversation_id);
591 const char* title, std::string& conversation_id,
594 if (sb ==
nullptr) {
return false; }
596 title ? title :
"session", std::nullopt, std::nullopt);
597 return !conversation_id.empty();
606 const char* delegation_id,
const char* status,
607 const char* summary,
void* user_data) {
609 if (sb ==
nullptr || delegation_id ==
nullptr) {
return false; }
610 std::optional<std::string> sum;
611 if (summary !=
nullptr) { sum = summary; }
613 status ? status :
"completed", sum);
622 const char* conversation_id,
const char* messages_json,
625 if (sb ==
nullptr || conversation_id ==
nullptr
626 || messages_json ==
nullptr) {
638 const char* conversation_id,
const char* messages_json,
641 if (sb ==
nullptr || conversation_id ==
nullptr
642 || messages_json ==
nullptr) {
659 const char* delegation_id, std::string& result_json,
662 bool ok = sb !=
nullptr && delegation_id !=
nullptr;
663 std::string del_json;
664 nlohmann::json del, conv;
665 std::string child_id, target, conv_json;
667 ok = sb->get_delegation_by_id(delegation_id, del_json);
670 del = nlohmann::json::parse(del_json,
nullptr,
false);
671 ok = del.is_object();
674 child_id = del.value(
"child_conversation_id", std::string{});
675 target = del.value(
"target_tier", std::string{});
676 ok = !child_id.empty() && !target.empty()
677 && sb->load_conversation(child_id, conv_json);
680 conv = nlohmann::json::parse(conv_json,
nullptr,
false);
681 ok = conv.is_object();
684 conv[
"target_tier"] = target;
685 conv[
"delegation_id"] = del.value(
"id", std::string{});
686 result_json = conv.dump();
725 h->
storage = std::make_unique<entropic::SqliteStorageBackend>(db_path);
726 if (h->
storage->initialize()) {
727 s_log->info(
"storage: {}", db_path.string());
729 s_log->warn(
"storage init failed, continuing without persistence");
761 std::unordered_set<std::string> targets;
763 for (
const auto& t : dests) { targets.insert(t); }
765 if (targets.empty()) {
766 for (
const auto& [name, tier] : config.
models.
tiers) {
768 targets.insert(name);
772 return {targets.begin(), targets.end()};
783 const std::filesystem::path& data_dir) {
785 ? std::filesystem::current_path()
791 h->
config.
mcp, tier_names, data_dir.string());
804 const std::filesystem::path& data_dir) {
805 std::string constitution, app_ctx;
806 entropic::prompts::load_constitution(
808 data_dir, constitution);
809 entropic::prompts::load_app_context(
813 if (!constitution.empty()) { prefix += constitution +
"\n\n"; }
814 if (!app_ctx.empty()) { prefix += app_ctx +
"\n\n"; }
878 const std::string& name,
887 h->
engine->set_relay_single_delegate(name);
905 const std::filesystem::path& data_dir) {
907 std::filesystem::path id_path;
908 if (tier.identity.has_value()) {
909 id_path = tier.identity.value();
910 }
else if (!tier.identity_disabled) {
911 id_path = data_dir /
"prompts" / (
"identity_" + name +
".md");
913 if (id_path.empty() || !std::filesystem::exists(id_path)) {
917 if (entropic::prompts::load_identity(id_path,
id).empty()) {
950 const std::filesystem::path& data_dir) {
952 std::filesystem::path id_path;
953 if (tier.identity.has_value()) {
954 id_path = tier.identity.value();
955 }
else if (!tier.identity_disabled) {
956 id_path = data_dir /
"prompts" / (
"identity_" + name +
".md");
958 if (id_path.empty() || !std::filesystem::exists(id_path)) {
962 if (entropic::prompts::load_identity(id_path,
id).empty()) {
987 if (exec ==
nullptr) {
return nullptr; }
989 if (s.empty() || s ==
"[]") {
return nullptr; }
990 auto* out =
static_cast<char*
>(std::malloc(s.size() + 1));
991 if (out !=
nullptr) {
992 std::memcpy(out, s.data(), s.size());
993 out[s.size()] =
'\0';
1010 h->
tool_executor = std::make_unique<entropic::ToolExecutor>(
1012 h->
engine->loop_config(),
1014 h->
engine->build_directive_hooks());
1017 const std::vector<entropic::ToolCall>& calls,
1018 void* ud) -> std::vector<entropic::Message> {
1020 ->process_tool_calls(ctx, calls);
1024 tei.
free_fn = [](
char* p) { std::free(p); };
1025 h->
engine->set_tool_executor(tei);
1043 if (h ==
nullptr || h->validator ==
nullptr) {
return nullptr; }
1047 switch (r.verdict) {
1049 v[
"verdict"] =
"passed";
break;
1051 v[
"verdict"] =
"revised";
break;
1053 v[
"verdict"] =
"rejected_reverted_length";
break;
1055 v[
"verdict"] =
"rejected_max_revisions";
break;
1057 v[
"verdict"] =
"skipped";
break;
1059 v[
"verdict"] =
"paused_pending_consumer";
break;
1061 v[
"verdict"] =
"passed_consumer_override";
break;
1063 v[
"revisions_applied"] = r.revision_count;
1067 v[
"attempt_n"] = r.attempt_n;
1068 nlohmann::json violations = nlohmann::json::array();
1069 for (
const auto& vi : r.final_critique.violations) {
1070 violations.push_back({
1072 {
"rule_id", vi.rule},
1073 {
"rule_text", vi.rule},
1074 {
"excerpt", vi.excerpt},
1075 {
"quote", vi.excerpt},
1076 {
"explanation", vi.explanation},
1077 {
"severity",
"error"},
1080 v[
"violations"] = violations;
1081 return strdup(v.dump().c_str());
1101 entropic::InferenceInterface& iface,
1102 const std::string& constitution_text) {
1103 entropic::HookInterface hook_iface;
1106 const char* json,
char** out) ->
int {
1108 ->fire_pre(pt, json, out);
1111 const char* json,
char** out) {
1113 ->fire_post(pt, json, out);
1119 h->
engine->set_hooks(hook_iface);
1129 && !constitution_text.empty()) {
1130 h->
validator = std::make_unique<entropic::ConstitutionalValidator>(
1132 h->
validator->attach(&hook_iface, &iface);
1136 s_log->info(
"Constitutional validator attached (max_revisions={})",
1152 j[
"log_level"] = h->config.log_level;
1153 j[
"log_dir"] = h->config.log_dir.string();
1154 j[
"ggml_logging"] = h->config.ggml_logging;
1155 return strdup(j.dump().c_str());
1173 auto data_dir = entropic::config::resolve_data_dir(h->
config);
1174 std::string constitution, app_ctx;
1175 entropic::prompts::load_constitution(
1177 data_dir, constitution);
1178 entropic::prompts::load_app_context(
1181 std::string identity_body;
1184 identity_body = entropic::prompts::resolve_tier_identity(
1185 it->second, tier_name, data_dir);
1188 if (!constitution.empty()) { out += constitution +
"\n\n"; }
1189 if (!app_ctx.empty()) { out += app_ctx +
"\n\n"; }
1190 if (!identity_body.empty()) { out += identity_body; }
1216 nlohmann::json arr = nlohmann::json::array();
1217 for (
const auto& [name, _] : h->config.models.tiers) {
1218 nlohmann::json entry;
1219 entry[
"name"] = name;
1220 entry[
"assembled_prompt"] =
1222 arr.push_back(std::move(entry));
1224 return strdup(arr.dump().c_str());
1234 if (!h->server_manager) {
return strdup(
"[]"); }
1235 return strdup(h->server_manager->list_tools().c_str());
1258 if (!h || !h->engine) {
return strdup(
"[]"); }
1259 const auto& msgs = h->engine->get_messages();
1260 nlohmann::json arr = nlohmann::json::array();
1263 &&
static_cast<int>(msgs.size()) > max_entries) {
1264 start =
static_cast<int>(msgs.size()) - max_entries;
1266 for (
int i = start; i < static_cast<int>(msgs.size()); ++i) {
1267 const auto& m = msgs[
static_cast<size_t>(i)];
1268 std::string preview = m.content.size() > 200
1269 ? entropic::facade::utf8_safe_substr(m.content, 200) +
"..."
1273 {
"content_preview", preview},
1274 {
"token_count_est", m.content.size() / 4u}
1277 return strdup(arr.dump().c_str());
1295 if (!h || !h->orchestrator) {
1296 return strdup(
"{\"vram_total_bytes\":0,\"vram_budget_bytes\":0,"
1297 "\"vram_headroom_bytes\":0,\"backend\":\"unknown\","
1298 "\"residency\":[]}");
1300 return strdup(h->orchestrator->residency_snapshot_json().c_str());
1311 j[
"engine_state"] = h->
configured.load() ?
"configured" :
"init";
1312 j[
"default_tier"] = h->config.models.default_tier;
1314 nlohmann::json tiers = nlohmann::json::array();
1315 for (
const auto& [name, _] : h->config.models.tiers) {
1316 tiers.push_back(name);
1318 j[
"active_tiers"] = tiers;
1320 if (h->server_manager) {
1321 j[
"working_dir"] = h->server_manager->project_dir().string();
1322 j[
"registered_servers"] = h->server_manager->server_names();
1324 j[
"data_dir"] = entropic::config::resolve_data_dir(
1325 h->config).string();
1326 j[
"log_dir"] = h->config.log_dir.string();
1327 return strdup(j.dump().c_str());
1344 if (!h || !h->engine) {
return strdup(
"{}"); }
1345 auto m = h->engine->last_loop_metrics();
1347 j[
"iterations"] = m.iterations;
1348 j[
"tool_calls"] = m.tool_calls;
1349 j[
"tokens_used"] = m.tokens_used;
1350 j[
"errors"] = m.errors;
1351 j[
"duration_ms"] = m.duration_ms();
1353 nlohmann::json per_tier = nlohmann::json::object();
1354 for (
auto& [tier, tm] : h->engine->per_tier_metrics()) {
1356 {
"iterations", tm.iterations},
1357 {
"tool_calls", tm.tool_calls},
1358 {
"tokens_used", tm.tokens_used},
1359 {
"errors", tm.errors},
1360 {
"duration_ms", tm.duration_ms()},
1363 j[
"per_tier"] = per_tier;
1364 return strdup(j.dump().c_str());
1388 const char* query,
int max_results,
void* ud) {
1390 if (h ==
nullptr || !h->storage || query ==
nullptr) {
1394 if (!h->storage->search_delegations(query, max_results, out)) {
1397 return strdup(out.c_str());
1410 const char* delegation_id,
void* ud) {
1412 if (h ==
nullptr || !h->storage || delegation_id ==
nullptr) {
1417 delegation_id, out, h->storage.get())) {
1420 return strdup(out.c_str());
1438 if (es ==
nullptr) {
return; }
1454 es->set_state_provider(sp);
1455 s_log->info(
"State provider wired to entropic server");
1467 h->
validator->set_tier_rules(name, rules);
1489 if (bm ==
"tokens") {
1491 }
else if (bm ==
"wall_clock") {
1495 s_log->warn(
"Unknown generation.budget_mode '{}' — "
1496 "treating as 'off'", bm);
1523 ? std::filesystem::current_path()
1528 s_log->warn(
"External MCP bridge failed to start");
1580 h->
orchestrator = std::make_unique<entropic::ModelOrchestrator>();
1582 h->
last_error =
"orchestrator initialization failed";
1589 h->
orchestrator->load_grammars_from(data_dir /
"grammars");
1608 h->
mcp_auth = std::make_unique<entropic::MCPAuthorizationManager>();
1629 h->
engine = std::make_unique<entropic::AgentEngine>(
1637 std::make_unique<entropic::CompactorRegistry>(
1638 h->
engine->compaction_manager());
1667 h->
engine->set_system_prompt(
1668 entropic::prompts::assemble(h->
config, data_dir));
1687 auto data_dir = entropic::config::resolve_data_dir(h->
config);
1701 s_log->info(
"configure complete");
1713 auto err = entropic::config::load_config_from_string(
1717 s_log->error(
"configure: {}", err);
1732 const char* config_json) {
1733 if (!handle || !config_json) {
1750 auto err = entropic::config::load_config_from_file(
1754 s_log->error(
"configure_from_file: {}", err);
1766 entropic::log::register_handle_log(
1781 const char* config_path) {
1782 if (!handle || !config_path) {
1799 if (project_dir && project_dir[0] !=
'\0') {
1800 entropic::log::setup_session(project_dir);
1804 entropic::log::register_handle_log(handle->
log_id, project_dir);
1807 std::filesystem::path proj_dir = (project_dir && project_dir[0] !=
'\0')
1809 auto err = entropic::config::load_layered(
1810 proj_dir,
"default_config.yaml",
1814 s_log->error(
"configure_dir: {}", err);
1822 handle->
engine->set_project_dir(std::filesystem::absolute(proj_dir));
1841 const char* project_dir) {
1859 if (handle ==
nullptr) {
1862 s_log->info(
"entropic_destroy()");
1881 entropic::log::unregister_handle_log(handle->
log_id);
1895 return CONFIG_ENTROPIC_VERSION_STRING;
1914 if (!handle || !handle->
engine) {
return 0; }
1915 return handle->
engine->seconds_since_last_activity();
1926 return malloc(size);
1958 char** result_json) {
1966 auto result = handle->
engine->run_turn(input);
1968 facade_json::serialize_messages(result));
1977 }
catch (
const std::exception& e) {
1985 facade_json::serialize_messages(
1986 handle->
engine->get_messages()));
1988 *result_json =
nullptr;
2004 char** result_json) {
2006 auto result = handle->
engine->run_turn_as(tier, input);
2007 *result_json =
alloc_cstr(facade_json::serialize_messages(result));
2013 }
catch (
const std::exception& e) {
2015 s_log->error(
"run_as: {}", handle->
last_error);
2020 facade_json::serialize_messages(handle->
engine->get_messages()));
2022 *result_json =
nullptr;
2047 const char* tier_or_identity,
2049 char** result_json) {
2051 if (rc !=
ENTROPIC_OK || !tier_or_identity || !input || !result_json
2054 : (!tier_or_identity || !input || !result_json)
2058 if (!handle->
engine->has_tier(tier_or_identity)) {
2060 std::string(
"unknown tier: ") + tier_or_identity;
2061 s_log->error(
"run_as: {}", handle->
last_error);
2064 return run_as_inner(handle, tier_or_identity, input, result_json);
2075 const std::vector<entropic::GenerationResult>& results) {
2076 nlohmann::json arr = nlohmann::json::array();
2077 for (
const auto& r : results) {
2079 obj[
"content"] = r.content;
2080 obj[
"finish_reason"] = r.finish_reason;
2081 obj[
"tool_calls"] = nlohmann::json::parse(
2083 arr.push_back(std::move(obj));
2104 size_t n, std::vector<std::string>& tiers_out) {
2105 std::vector<std::vector<entropic::Message>> msgs(n);
2106 tiers_out.resize(n);
2107 for (
size_t i = 0; i < n; ++i) {
2108 tiers_out[i] = (tiers && tiers[i]) ? tiers[i] :
"";
2109 const std::string& sys =
2110 handle->
engine->tier_system_prompt(tiers_out[i]);
2111 std::vector<entropic::Message> m;
2116 m.push_back(std::move(s));
2120 u.
content = prompts[i] ? prompts[i] :
"";
2121 m.push_back(std::move(u));
2122 msgs[i] = std::move(m);
2148 const char** prompts,
2150 char** result_json) {
2155 : (!prompts || !result_json || n == 0)
2160 std::vector<std::string> tiers_vec;
2162 std::vector<entropic::GenerationParams> params(n);
2163 std::atomic<bool> cancel{
false};
2165 msgs, params, tiers_vec, cancel);
2168 }
catch (
const std::exception& e) {
2170 s_log->error(
"run_batch: {}", handle->
last_error);
2197 void (*on_token)(
const char* token,
size_t len,
void* user_data),
2208 int code = handle->
engine->run_streaming(
2209 input, on_token, user_data, cancel_flag);
2215 }
catch (
const std::exception& e) {
2217 s_log->error(
"run_streaming: {}", handle->
last_error);
2243 const char* messages_json,
2275 const char* messages_json,
2276 char** result_json) {
2280 auto result = handle->
engine->run_turn(std::move(msgs));
2282 facade_json::serialize_messages(result));
2307 const char* messages_json,
2308 char** result_json) {
2311 || !messages_json || !result_json || !handle->
engine) {
2316 }
catch (
const std::exception& e) {
2318 s_log->error(
"run_messages: {}", handle->
last_error);
2335 const char* messages_json,
2336 void (*on_token)(
const char* token,
size_t len,
void* user_data),
2342 int code = handle->
engine->run_streaming(
2343 std::move(msgs), on_token, user_data, cancel_flag);
2370 const char* messages_json,
2371 void (*on_token)(
const char* token,
size_t len,
void* user_data),
2376 || !messages_json || !on_token || !handle->
engine) {
2381 handle, messages_json, on_token, user_data, cancel_flag);
2382 }
catch (
const std::exception& e) {
2384 s_log->error(
"run_messages_streaming: {}", handle->
last_error);
2400 void (*observer)(
const char* token,
size_t len,
void* user_data),
2408 handle->
engine->set_stream_observer(observer, user_data);
2424 handle->
validator->set_auto_retry(enabled != 0);
2439 return handle->
validator->resume_retry();
2452 return handle->
validator->accept_last();
2466 handle->
validator->set_attempt_boundary_cb(cb, user_data);
2488 handle->
engine->set_delegation_callbacks(
2489 on_start, on_complete, user_data);
2512 void (*observer)(
int state,
void* user_data),
2516 handle->state_observer_data = user_data;
2524 handle->
engine->set_state_observer(observer, user_data);
2549 void (*start_cb)(
void* user_data),
2550 void (*end_cb)(
void* user_data),
2557 handle->
validator->set_critique_callbacks(
2558 start_cb, end_cb, user_data);
2574 handle->
engine->interrupt();
2597 }
else if (!message) {
2599 }
else if (!handle->
engine || !handle->
engine->is_running()) {
2601 }
else if (!handle->
engine->queue_user_message(message)) {
2617 ? handle->
engine->user_message_queue_depth() : 0;
2630 handle->
engine->clear_user_message_queue();
2648 void (*observer)(
const char*,
size_t,
void*),
2652 handle->queue_observer_data = user_data;
2654 handle->
engine->set_queue_observer(observer, user_data);
2671 handle->
engine->clear_conversation();
2689 facade_json::serialize_messages(handle->
engine->get_messages()));
2705 *count = handle->
engine->message_count();
2725 size_t* tokens_used,
2730 auto [used, max] = handle->
engine->context_usage(
2731 handle->
engine->get_messages());
2732 *tokens_used =
static_cast<size_t>(used);
2733 *capacity =
static_cast<size_t>(max);
2746 std::vector<uint8_t> buf;
2748 std::ofstream out(path, std::ios::binary | std::ios::trunc);
2749 bool ok = out.is_open()
2750 && out.write(
reinterpret_cast<const char*
>(buf.data()),
2751 static_cast<std::streamsize
>(buf.size())).good();
2763 const char* tier_name,
2765 if (!handle || !tier_name || !path) {
2786 std::ifstream in(path, std::ios::binary | std::ios::ate);
2787 if (!in.is_open()) {
return false; }
2788 auto sz =
static_cast<std::streamsize
>(in.tellg());
2789 if (sz <= 0) {
return false; }
2790 in.seekg(0, std::ios::beg);
2791 out_buf.resize(
static_cast<size_t>(sz));
2792 return static_cast<bool>(
2793 in.read(
reinterpret_cast<char*
>(out_buf.data()), sz));
2805 std::vector<uint8_t> buf;
2807 return backend->restore_state(0, buf)
2819 const char* tier_name,
2821 if (!handle || !tier_name || !path) {
2867 const char* adapter_name,
2868 const char* adapter_path,
2869 const char* base_model_path,
2873 if (rc !=
ENTROPIC_OK || !adapter_name || !adapter_path || !base_model_path) {
2880 throw std::runtime_error(
"no tier for model: "
2881 + std::string(base_model_path));
2885 if (!llama || !llama->llama_model_ptr()) {
2886 throw std::runtime_error(
"backend not ready for tier: " + tier);
2888 bool ok = handle->
orchestrator->adapter_manager().load(
2889 adapter_name, adapter_path, llama->llama_model_ptr(), scale);
2891 }
catch (
const std::exception& e) {
2910 const char* adapter_name)
2919 auto info = mgr.info(adapter_name);
2921 throw std::runtime_error(
"adapter not loaded: "
2922 + std::string(adapter_name));
2927 mgr.
unload(adapter_name, llama ? llama->llama_context_ptr() :
nullptr);
2929 }
catch (
const std::exception& e) {
2948 const char* adapter_name)
2959 if (!llama || !llama->llama_context_ptr()) {
2960 throw std::runtime_error(
"no active llama context for swap");
2962 bool ok = handle->
orchestrator->adapter_manager().swap(
2963 adapter_name, llama->llama_context_ptr());
2965 }
catch (
const std::exception& e) {
2983 const char* adapter_name)
2990 auto st = handle->
orchestrator->adapter_manager().state(adapter_name);
2991 return static_cast<int>(st);
2992 }
catch (
const std::exception& e) {
2994 s_log->error(
"adapter_state: {}", handle->
last_error);
3011 const char* adapter_name)
3018 auto ai = handle->
orchestrator->adapter_manager().info(adapter_name);
3020 facade_json::serialize_adapter_info(ai).c_str());
3021 }
catch (
const std::exception& e) {
3023 s_log->error(
"adapter_info: {}", handle->
last_error);
3044 auto adapters = handle->
orchestrator->adapter_manager().list_adapters();
3046 facade_json::serialize_adapter_list(adapters).c_str());
3047 }
catch (
const std::exception& e) {
3049 s_log->error(
"adapter_list: {}", handle->
last_error);
3071 const char* gbnf_content)
3080 .register_grammar(key, gbnf_content);
3081 s_log->info(
"grammar_register: key={} ok={}", key, ok);
3083 }
catch (
const std::exception& e) {
3085 s_log->error(
"grammar_register: {}", handle->
last_error);
3113 .register_from_file(key, path);
3114 s_log->info(
"grammar_register_file: key={} ok={}", key, ok);
3116 }
catch (
const std::exception& e) {
3118 s_log->error(
"grammar_register_file: {}", handle->
last_error);
3144 bool ok = handle->
orchestrator->grammar_registry().deregister(key);
3145 s_log->info(
"grammar_deregister: key={} ok={}", key, ok);
3147 }
catch (
const std::exception& e) {
3149 s_log->error(
"grammar_deregister: {}", handle->
last_error);
3173 auto content = handle->
orchestrator->grammar_registry().get(key);
3174 return content.empty() ? nullptr :
alloc_cstr(content.c_str());
3175 }
catch (
const std::exception& e) {
3177 s_log->error(
"grammar_get: {}", handle->
last_error);
3194 if (!gbnf_content) {
return alloc_cstr(
"null input"); }
3197 return err.empty() ? nullptr :
alloc_cstr(err.c_str());
3198 }
catch (
const std::exception& e) {
3220 auto entries = handle->
orchestrator->grammar_registry().list();
3221 nlohmann::json arr = nlohmann::json::array();
3222 for (
const auto& e : entries) {
3223 arr.push_back({{
"key", e.key},
3224 {
"source", e.source},
3225 {
"validated", e.validated},
3226 {
"error", e.error}});
3229 }
catch (
const std::exception& e) {
3231 s_log->error(
"grammar_list: {}", handle->
last_error);
3252 const char* profile_json)
3260 auto j = nlohmann::json::parse(profile_json);
3262 p.
name = j.value(
"name",
"");
3263 if (p.
name.empty()) {
throw std::invalid_argument(
"missing 'name'"); }
3264 p.
n_batch = j.value(
"n_batch", 512);
3269 .register_profile(p);
3270 s_log->info(
"profile_register: name={} ok={}", p.
name, ok);
3272 }
catch (
const std::exception& e) {
3274 s_log->error(
"profile_register: {}", handle->
last_error);
3300 bool ok = handle->
orchestrator->profile_registry().deregister(name);
3301 s_log->info(
"profile_deregister: name={} ok={}", name, ok);
3303 }
catch (
const std::exception& e) {
3305 s_log->error(
"profile_deregister: {}", handle->
last_error);
3331 auto p = handle->
orchestrator->profile_registry().get(name);
3334 j[
"n_batch"] = p.n_batch;
3335 j[
"n_threads"] = p.n_threads;
3336 j[
"n_threads_batch"] = p.n_threads_batch;
3337 j[
"description"] = p.description;
3339 }
catch (
const std::exception& e) {
3341 s_log->error(
"profile_get: {}", handle->
last_error);
3362 auto names = handle->
orchestrator->profile_registry().list();
3363 nlohmann::json arr = nlohmann::json(names);
3365 }
catch (
const std::exception& e) {
3367 s_log->error(
"profile_list: {}", handle->
last_error);
3388 const char* model_path)
3395 return handle->
orchestrator->throughput_tracker().tok_per_sec();
3396 }
catch (
const std::exception& e) {
3398 s_log->error(
"throughput_tok_per_sec: {}", handle->
last_error);
3416 const char* model_path)
3424 s_log->info(
"throughput_reset: data cleared");
3425 }
catch (
const std::exception& e) {
3427 s_log->error(
"throughput_reset: {}", handle->
last_error);
3442 const char* identity_name,
3443 const char* pattern,
3447 if (rc !=
ENTROPIC_OK || !identity_name || !pattern) {
3451 return handle->
mcp_auth->grant(identity_name, pattern, lvl);
3463 const char* identity_name,
3464 const char* pattern)
3467 if (rc !=
ENTROPIC_OK || !identity_name || !pattern) {
3470 return handle->
mcp_auth->revoke(identity_name, pattern);
3482 const char* identity_name,
3483 const char* tool_name,
3487 || !handle->
mcp_auth || !identity_name || !tool_name) {
3491 return handle->
mcp_auth->check_access(identity_name, tool_name, lvl) ? 1 : 0;
3503 const char* identity_name)
3506 || !handle->
mcp_auth || !identity_name) {
3510 auto keys = handle->
mcp_auth->list_keys(identity_name);
3511 nlohmann::json arr = nlohmann::json::array();
3512 for (
const auto& k : keys) {
3513 arr.push_back({{
"pattern", k.tool_pattern},
3514 {
"level",
static_cast<int>(k.level)}});
3517 }
catch (
const std::exception& e) {
3532 const char* granter,
3533 const char* grantee,
3534 const char* pattern,
3538 if (rc !=
ENTROPIC_OK || !granter || !grantee || !pattern) {
3542 return handle->
mcp_auth->grant_from(granter, grantee, pattern, lvl);
3558 auto json = handle->
mcp_auth->serialize_all();
3560 }
catch (
const std::exception& e) {
3581 bool ok = handle->
mcp_auth->deserialize_all(json);
3596 const char* config_json)
3603 auto j = nlohmann::json::parse(config_json);
3605 cfg.
name = j.value(
"name",
"");
3607 if (j.contains(
"focus") && j[
"focus"].is_array()) {
3608 cfg.
focus = j[
"focus"].get<std::vector<std::string>>();
3612 }
catch (
const std::exception& e) {
3628 const char* config_json)
3635 auto j = nlohmann::json::parse(config_json);
3639 if (j.contains(
"focus") && j[
"focus"].is_array()) {
3640 cfg.
focus = j[
"focus"].get<std::vector<std::string>>();
3644 }
catch (
const std::exception& e) {
3682 if (!cfg) {
throw std::runtime_error(
"identity not found"); }
3684 j[
"name"] = cfg->name;
3685 j[
"system_prompt"] = cfg->system_prompt;
3687 ?
"static" :
"dynamic";
3706 nlohmann::json arr(names);
3749 const char* model_id,
3750 const int32_t* tokens,
3755 if (rc !=
ENTROPIC_OK || !model_id || !tokens || !result || n_tokens < 2) {
3761 auto lr = backend->evaluate_logprobs(tokens, n_tokens);
3766 result->
logprobs =
static_cast<float*
>(
3767 malloc(
sizeof(
float) * lr.logprobs.size()));
3768 std::copy(lr.logprobs.begin(), lr.logprobs.end(),
3770 result->
tokens =
static_cast<int32_t*
>(
3771 malloc(
sizeof(int32_t) * lr.tokens.size()));
3772 std::copy(lr.tokens.begin(), lr.tokens.end(),
3775 }
catch (
const std::exception& e) {
3777 s_log->error(
"get_logprobs: {}", handle->
last_error);
3794 const char* model_id,
3795 const int32_t* tokens,
3800 if (rc !=
ENTROPIC_OK || !model_id || !tokens || !perplexity || n_tokens < 2) {
3806 *perplexity = backend->compute_perplexity(tokens, n_tokens);
3808 }
catch (
const std::exception& e) {
3810 s_log->error(
"compute_perplexity: {}", handle->
last_error);
3826 if (result ==
nullptr) {
3832 result->
tokens =
nullptr;
3850 const char* model_id)
3857 auto* backend = handle->
orchestrator->get_backend(model_id);
3858 return (backend && backend->supports(
3860 }
catch (
const std::exception& e) {
3862 s_log->error(
"model_has_vision: {}", handle->
last_error);
3882 handle->
validator->set_global_enabled(enabled);
3895 const char* identity_name,
3903 handle->
validator->set_identity_validation(identity_name, enabled);
3916 if (!handle || !handle->
validator) {
return nullptr; }
3918 auto result = handle->
validator->last_result();
3920 j[
"content"] = result.content;
3921 j[
"was_revised"] = result.was_revised;
3922 j[
"revision_count"] = result.revision_count;
3940 char** prompt_out) {
3941 if (handle ==
nullptr || prompt_out ==
nullptr) {
3945 static const char* prompt =
3946 "[SYSTEM DIRECTIVE: SELF-DIAGNOSIS]\n\n"
3947 "Analyze your recent actions and identify any issues. "
3948 "Follow these steps:\n\n"
3949 "1. Call entropic.diagnose to get a full engine state "
3951 "2. Review the tool call history for:\n"
3952 " - Repeated failures (same tool, same error)\n"
3953 " - Duplicate tool calls (circuit breaker risk)\n"
3954 " - Tool calls that returned errors\n"
3955 " - Unexpected state (wrong phase, wrong tier)\n"
3956 "3. Review your reasoning for:\n"
3957 " - Actions that didn't achieve the stated goal\n"
3958 " - Unnecessary tool calls\n"
3959 " - Missing context that led to errors\n"
3960 "4. Produce a structured assessment:\n"
3961 " - FINDINGS: What went wrong (be specific)\n"
3962 " - ROOT CAUSE: Why it went wrong\n"
3963 " - RECOMMENDATION: What to do differently\n\n"
3964 "Be honest and specific. The goal is accurate "
3965 "self-assessment, not self-defense.\n";
3993 char** diagnostic) {
3994 if (handle ==
nullptr || compatible ==
nullptr) {
4000 auto info = handle->
orchestrator->check_speculative_compat();
4001 *compatible = info.compatible ? 1 : 0;
4002 if (diagnostic !=
nullptr) {
4003 *diagnostic = info.compatible
4035 if (observer !=
nullptr) {
4036 fn = [observer, user_data](
4038 const std::string& tier_name,
4039 const std::string& model_path,
4049 handle->
orchestrator->set_residency_observer(std::move(fn));
4070 if (handle ==
nullptr || out_json ==
nullptr) {
4075 std::string snapshot =
4078 if (*out_json ==
nullptr) {
static std::string validate(const std::string &gbnf_content)
Validate a GBNF grammar string.
gh#59 (v2.3.1): RAII guard combining api_mutex + log scope.
Thread-safe hook registration and dispatch.
int fire_pre(entropic_hook_point_t point, const char *context_json, char **out_json)
Fire pre-hooks.
void fire_post(entropic_hook_point_t point, const char *context_json, char **out_json)
Fire post-hooks.
void fire_info(entropic_hook_point_t point, const char *context_json)
Fire informational hooks (no modify, no cancel).
Concrete base class for inference backends (80% logic).
void unload()
Full unload (→ COLD).
LlamaCppBackend — common llama.cpp patterns (15% layer).
Multi-model lifecycle and routing orchestrator.
std::function< void(ResidencyEvent event, const std::string &tier_name, const std::string &model_path, size_t footprint)> ResidencyObserverFn
Residency observer callback type (internal C++ form).
void clear_all_prompt_caches()
Invalidate prompt/KV caches across every pooled backend.
ResidencyEvent
Residency observer event codes — mirror the C ABI enum entropic_residency_event_t exactly (LOADED=0,...
Manages MCP server instances and routes tool calls.
void interrupt_external_tools()
Abort in-flight tool calls across every external MCP client.
SQLite-based storage backend.
bool save_messages(const std::string &conversation_id, const std::string &messages_json)
Save messages to a conversation.
bool complete_delegation(const std::string &delegation_id, const std::string &status, const std::optional< std::string > &result_summary=std::nullopt)
Mark a delegation as completed or failed.
bool create_delegation(const std::string &parent_conversation_id, const std::string &delegating_tier, const std::string &target_tier, const std::string &task, int max_turns, std::string &delegation_id, std::string &child_conversation_id)
Create a delegation record with a child conversation.
bool save_snapshot(const std::string &conversation_id, const std::string &messages_json)
Save a pre-compaction snapshot of full conversation history.
std::string create_conversation(const std::string &title="New Conversation", const std::optional< std::string > &project_path=std::nullopt, const std::optional< std::string > &model_id=std::nullopt)
Create a new conversation.
std::string to_json(size_t count) const
Serialize recent entries to JSON array string.
std::string auto_discover_and_load()
Auto-discover and load bundled_models.yaml.
Private definition of the entropic_engine struct.
static entropic_error_t check_mcp_auth(entropic_handle_t h)
Check handle prerequisites for MCP auth APIs.
static void thread_frontmatter_sampler(entropic::TierConfig &tc, const entropic::prompts::IdentityFrontmatter &fm)
Cache per-tier frontmatter fields (allowed_tools, validation_rules, relay).
static entropic_error_t do_configure_dir(entropic_handle_t handle, const char *project_dir)
entropic_configure_dir body — wrapped by c_api_try.
static void apply_identity_frontmatter(entropic_handle_t h, const std::string &name, const entropic::prompts::IdentityFrontmatter &fm)
Apply a parsed identity's frontmatter to the engine handle.
entropic_error_t entropic_run_messages(entropic_handle_t handle, const char *messages_json, char **result_json)
Blocking multimodal agentic run (gh#37, v2.1.8).
static entropic_error_t do_state_load(entropic_handle_t handle, const char *tier_name, const char *path)
Load tier's KV cache from file body (gh#23 v2.3.25).
entropic_error_t entropic_identity_count(entropic_handle_t handle, size_t *total, size_t *dynamic)
Get identity count (total and dynamic).
static bool si_create_delegation(const char *parent_id, const char *delegating_tier, const char *target_tier, const char *task, int max_turns, std::string &delegation_id, std::string &child_conversation_id, void *user_data)
Initialize persistence: storage + session logger.
static entropic_error_t reject_if_configured(entropic_handle_t h)
Post-parse config setup: subsystem construction + wiring.
static std::vector< std::string > resolve_allowed_tools(entropic_engine *h, const std::string &tier)
Post-parse config setup: load bundled models, set configured.
static entropic_error_t do_configure_json(entropic_handle_t handle, const char *config_json)
entropic_configure body — wrapped by c_api_try in the public entry.
static void start_external_bridge(entropic_handle_t h)
Start the external MCP bridge if enabled in config.
static char * sp_search_delegations(const char *query, int max_results, void *ud)
State provider: search_delegations (gh#32, v2.1.6).
entropic_error_t entropic_grammar_deregister(entropic_handle_t handle, const char *key)
Remove a grammar from the registry.
entropic_error_t entropic_context_usage(entropic_handle_t handle, size_t *tokens_used, size_t *capacity)
Read current context-window pressure (gh#39, v2.1.8).
char * entropic_adapter_list(entropic_handle_t handle)
List all known adapters as a JSON array.
entropic_error_t entropic_validation_resume_retry(entropic_handle_t handle)
Resume a paused constitutional revision pass.
static char * sp_load_delegation_conversation(const char *delegation_id, void *ud)
State provider: load_delegation_conversation (gh#32, v2.1.6).
static entropic_error_t run_messages_stream_inner(entropic_handle_t handle, const char *messages_json, void(*on_token)(const char *token, size_t len, void *user_data), void *user_data, int *cancel_flag)
Streaming multimodal run (gh#37, v2.1.8).
static char * sp_get_metrics(void *ud)
State provider: get_metrics.
static char * sp_get_state(void *ud)
State provider: get_state (runtime environment).
static void rewire_observers(entropic_handle_t h)
Re-bind every pre-configure observer to the new engine.
entropic_error_t entropic_deserialize_mcp_keys(entropic_handle_t handle, const char *json)
Deserialize all identity key sets from JSON.
static char * sp_get_residency(void *ud)
State provider: get_residency — VRAM residency snapshot.
static std::string build_shared_prompt_prefix(entropic_handle_t h, const std::filesystem::path &data_dir)
Build shared system prompt prefix (constitution + app_context).
entropic_error_t entropic_create(entropic_handle_t *handle)
Create a new engine instance.
static void init_mcp_servers(entropic_handle_t h, const std::filesystem::path &data_dir)
Initialize MCP servers with resolved working directory.
entropic_error_t entropic_grammar_register(entropic_handle_t handle, const char *key, const char *gbnf_content)
Register a grammar by key with GBNF content.
entropic_error_t entropic_set_stream_observer(entropic_handle_t handle, void(*observer)(const char *token, size_t len, void *user_data), void *user_data)
Set a global stream observer callback.
entropic_error_t entropic_validation_set_auto_retry(entropic_handle_t handle, int enabled)
Toggle automatic constitutional revision.
entropic_error_t entropic_update_identity(entropic_handle_t handle, const char *name, const char *config_json)
Update an existing dynamic identity.
entropic_error_t entropic_set_residency_observer(entropic_handle_t handle, entropic_residency_observer_t observer, void *user_data)
Register a residency observer on the orchestrator.
entropic_error_t entropic_metrics_json(entropic_handle_t handle, char **out)
Get loop metrics as JSON (flat + per_tier).
entropic_error_t entropic_validation_set_identity(entropic_handle_t handle, const char *identity_name, bool enabled)
Set per-identity validation override.
entropic_error_t entropic_grant_mcp_key_from(entropic_handle_t handle, const char *granter, const char *grantee, const char *pattern, entropic_mcp_access_level_t level)
Grant a key from one identity to another.
void entropic_free(void *ptr)
Free memory allocated by the engine.
entropic_error_t entropic_run_streaming(entropic_handle_t handle, const char *input, void(*on_token)(const char *token, size_t len, void *user_data), void *user_data, int *cancel_flag)
Streaming generation — delegates entirely to engine.
double entropic_throughput_tok_per_sec(entropic_handle_t handle, const char *model_path)
Get EWMA throughput estimate in tokens per second.
char * entropic_profile_get(entropic_handle_t handle, const char *name)
Get a GPU resource profile by name as JSON.
entropic_error_t entropic_validation_accept_last(entropic_handle_t handle)
Accept the last paused attempt as the final answer.
static void populate_tier_info(entropic_handle_t h, const std::filesystem::path &data_dir, const std::string &shared_prefix)
Register per-tier ChildContextInfo with the engine.
static void init_persistence(entropic_handle_t h)
Initialize persistence: storage + session logger + StorageInterface.
void entropic_throughput_reset(entropic_handle_t handle, const char *model_path)
Reset throughput tracking data.
entropic_error_t entropic_state_load(entropic_handle_t handle, const char *tier_name, const char *path)
Restore a tier's KV cache from a file (gh#23 v2.3.25).
static char * sp_get_docs(const char *section, void *ud)
State provider: get_docs.
static bool si_save_conversation(const char *conversation_id, const char *messages_json, void *user_data)
StorageInterface bridge: save_conversation trampoline.
static void rewire_state_observer(entropic_handle_t h)
Propagate any pre-configure state observer to the new engine.
static entropic_error_t run_as_inner(entropic_handle_t handle, const char *tier, const char *input, char **result_json)
Run + serialize for entropic_run_as (gh#99).
entropic_error_t entropic_set_critique_callbacks(entropic_handle_t handle, void(*start_cb)(void *user_data), void(*end_cb)(void *user_data), void *user_data)
Register critique start/end callbacks on the handle (gh#50, v2.1.12).
entropic_error_t entropic_queue_user_message(entropic_handle_t handle, const char *message)
Enqueue a follow-up user message while a run is in flight.
char * entropic_list_mcp_keys(entropic_handle_t handle, const char *identity_name)
List MCP keys for an identity as JSON array.
void entropic_destroy(entropic_handle_t handle)
Destroy an engine instance.
entropic_error_t entropic_adapter_load(entropic_handle_t handle, const char *adapter_name, const char *adapter_path, const char *base_model_path, float scale)
Load a LoRA adapter into RAM.
entropic_error_t entropic_run_batch(entropic_handle_t handle, const char **tiers, const char **prompts, size_t n, char **result_json)
Same-prefix batch run on a shared resident model (gh#98).
entropic_error_t entropic_validation_set_enabled(entropic_handle_t handle, bool enabled)
Enable or disable constitutional validation globally.
entropic_error_t entropic_configure_from_file(entropic_handle_t handle, const char *config_path)
Configure the engine from a YAML config file.
static std::vector< std::vector< entropic::Message > > build_batch_messages(entropic_handle_t handle, const char **tiers, const char **prompts, size_t n, std::vector< std::string > &tiers_out)
Build per-request messages for entropic_run_batch (gh#98).
static void thread_frontmatter_samplers(entropic_handle_t h, const std::filesystem::path &data_dir)
Thread per-tier frontmatter SAMPLERS into config pre-orchestrator.
int entropic_adapter_state(entropic_handle_t handle, const char *adapter_name)
Query adapter lifecycle state.
static void rewire_critique_callbacks(entropic_handle_t h)
Propagate pre-configure critique callbacks to a newly- constructed ConstitutionalValidator (gh#50,...
int64_t entropic_seconds_since_last_activity(entropic_handle_t handle)
gh#35: idle-time accessor for host-side idle-exit policies.
entropic_error_t entropic_set_state_observer(entropic_handle_t handle, void(*observer)(int state, void *user_data), void *user_data)
Register a state-change observer on the handle.
static void init_engine_and_interfaces(entropic_handle_t h, const std::filesystem::path &data_dir)
Build the engine + inference interfaces (configure step 2).
static void wire_hooks_and_validator(entropic_handle_t h, entropic::InferenceInterface &iface, const std::string &constitution_text)
Wire hook dispatch and attach the constitutional validator.
entropic_error_t entropic_grant_mcp_key(entropic_handle_t handle, const char *identity_name, const char *pattern, entropic_mcp_access_level_t level)
Grant an MCP tool key to an identity.
static entropic::LoopConfig build_loop_config(entropic_handle_t h)
Build LoopConfig from parsed config.
static entropic_error_t check_orchestrator(entropic_handle_t h)
Check handle prerequisites for orchestrator APIs.
entropic_error_t entropic_context_count(entropic_handle_t handle, size_t *count)
Get conversation message count.
static void rewire_queue_observer(entropic_handle_t h)
Propagate any pre-configure queue observer to the new engine.
char * entropic_validation_last_result(entropic_handle_t handle)
Get last validation result as JSON.
static char * sp_get_validation(void *ud)
Return the validator's last verdict as JSON for ON_COMPLETE.
char * entropic_grammar_validate(const char *gbnf_content)
Validate a GBNF grammar string without registering.
char * entropic_profile_list(entropic_handle_t handle)
List all registered profile names as a JSON array.
entropic_error_t entropic_compute_perplexity(entropic_handle_t handle, const char *model_id, const int32_t *tokens, int n_tokens, float *perplexity)
Compute perplexity for a token sequence.
entropic_error_t entropic_grammar_register_file(entropic_handle_t handle, const char *key, const char *path)
Register a grammar from a GBNF file.
static char * sp_get_config(void *ud)
State provider: get_config.
entropic_error_t entropic_speculative_compat(entropic_handle_t handle, int *compatible, char **diagnostic)
Query speculative-decoding compatibility for the configured target/draft pair.
entropic_error_t entropic_destroy_identity(entropic_handle_t handle, const char *name)
Destroy a dynamic identity.
static std::string serialize_batch_results(const std::vector< entropic::GenerationResult > &results)
Serialize batch results to a JSON array string (gh#98).
static entropic::InferenceBackend * require_active_backend(entropic_handle_t h, const char *tier_name)
Resolve tier name to an ACTIVE backend, or throw.
static char * sp_get_history(int max_entries, void *ud)
State provider: get_history — conversation context snapshot.
int entropic_check_mcp_key(entropic_handle_t handle, const char *identity_name, const char *tool_name, entropic_mcp_access_level_t level)
Check MCP key authorization for an identity.
entropic_error_t entropic_run(entropic_handle_t handle, const char *input, char **result_json)
Single-turn blocking agentic run.
static void rewire_stream_observer(entropic_handle_t h)
Propagate any pre-configure stream observer to the new engine.
char * entropic_adapter_info(entropic_handle_t handle, const char *adapter_name)
Get adapter info as JSON string.
static char * sp_get_tools(void *ud)
State provider: get_tools.
static entropic_error_t do_configure_from_file(entropic_handle_t handle, const char *config_path)
entropic_configure_from_file body — wrapped by c_api_try.
entropic_error_t entropic_configure(entropic_handle_t handle, const char *config_json)
Configure the engine from a JSON/YAML config string.
entropic_error_t entropic_profile_deregister(entropic_handle_t handle, const char *name)
Remove a GPU resource profile by name.
entropic_error_t entropic_set_queue_observer(entropic_handle_t handle, void(*observer)(const char *, size_t, void *), void *user_data)
Register the queue-consumption observer.
static std::vector< entropic::Message > parse_and_check_vision(entropic_handle_t handle, const char *messages_json, entropic_error_t &out_rc)
Parse messages_json and check vision-tier availability (gh#37/gh#41).
static char * tool_history_json_thunk(size_t count, void *ud)
Wire the ToolExecutor and attach it to the engine.
static std::string build_assembled_prompt_for_tier(entropic_engine *h, const std::string &tier_name)
Build the assembled system prompt the engine would send for a given tier (constitution + app_context ...
static bool si_complete_delegation(const char *delegation_id, const char *status, const char *summary, void *user_data)
StorageInterface bridge: complete_delegation trampoline.
static bool read_state_file(const char *path, std::vector< uint8_t > &out_buf)
Load tier's KV cache from file body (gh#23 v2.3.25).
entropic_error_t entropic_user_message_queue_depth(entropic_handle_t handle, size_t *count)
Snapshot the mid-gen queue depth.
static entropic_error_t init_orchestrator(entropic_handle_t h, const std::filesystem::path &data_dir)
Shared body of all entropic_configure* entry points.
char * entropic_grammar_get(entropic_handle_t handle, const char *key)
Get grammar GBNF content by key.
char * entropic_list_identities(entropic_handle_t handle)
List all identity names as JSON array.
entropic_error_t entropic_context_get(entropic_handle_t handle, char **messages_json)
Get conversation as JSON array.
entropic_error_t entropic_state_save(entropic_handle_t handle, const char *tier_name, const char *path)
Save a tier's KV cache to a file (gh#23 v2.3.25, MVP item 13).
entropic_error_t entropic_run_as(entropic_handle_t handle, const char *tier_or_identity, const char *input, char **result_json)
Single-turn blocking run under a named tier (gh#99).
static void wire_prompts_and_persistence(entropic_handle_t h, const std::filesystem::path &data_dir)
Assemble prompts + wire validation/persistence (config step 3).
static entropic_error_t configure_common(entropic_handle_t h)
Shared body of all entropic_configure* entry points.
entropic_error_t entropic_profile_register(entropic_handle_t handle, const char *profile_json)
Register a custom GPU resource profile from JSON.
char * entropic_serialize_mcp_keys(entropic_handle_t handle)
Serialize all identity key sets to JSON.
void entropic_free_logprob_result(entropic_logprob_result_t *result)
Free internal arrays of a logprob result.
entropic_error_t entropic_adapter_swap(entropic_handle_t handle, const char *adapter_name)
Swap active LoRA adapter.
static entropic_error_t run_messages_inner(entropic_handle_t handle, const char *messages_json, char **result_json)
Blocking multimodal run (gh#37, v2.1.8).
entropic_error_t entropic_set_delegation_callbacks(entropic_handle_t handle, ent_delegation_start_cb on_start, ent_delegation_complete_cb on_complete, void *user_data)
Register delegation start/complete callbacks (gh#29, v2.1.5).
entropic_error_t entropic_interrupt(entropic_handle_t handle)
Interrupt a running generation (thread-safe).
static std::vector< std::string > collect_delegatable_tiers(const entropic::ParsedConfig &config)
Collect valid delegation targets from handoff_rules.
static std::vector< std::string > filter_tools(const nlohmann::json &all_tools, const std::vector< std::string > &allowed)
Filter tool definitions by allowed list.
int entropic_model_has_vision(entropic_handle_t handle, const char *model_id)
Check if a model has vision (multimodal) capability.
entropic_error_t entropic_get_diagnostic_prompt(entropic_handle_t handle, char **prompt_out)
Get diagnostic prompt text for /diagnose command (stub).
static void wire_external_interrupt(entropic_handle_t h)
Wire engine interrupt propagation into MCP transports (P1-10).
static entropic::StorageInterface build_storage_iface(entropic::SqliteStorageBackend *sb)
Build a populated StorageInterface bound to sb.
static void cache_tier_allowed_tools(entropic_handle_t h, const std::filesystem::path &data_dir)
Cache per-tier frontmatter fields from identity files.
const char * entropic_last_error(entropic_handle_t handle)
Read the per-handle last_error under api_mutex.
entropic_error_t entropic_configure_dir(entropic_handle_t handle, const char *project_dir)
Configure using layered resolution (project dir).
entropic_error_t entropic_residency_snapshot(entropic_handle_t handle, char **out_json)
Return the engine's current residency-set snapshot as JSON.
entropic_error_t entropic_run_messages_streaming(entropic_handle_t handle, const char *messages_json, void(*on_token)(const char *token, size_t len, void *user_data), void *user_data, int *cancel_flag)
Streaming multimodal agentic run (gh#37, v2.1.8).
entropic_error_t entropic_context_clear(entropic_handle_t handle)
Clear conversation history.
static char * sp_get_identities(void *ud)
State provider: get_identities.
entropic_error_t entropic_create_identity(entropic_handle_t handle, const char *config_json)
Create a dynamic identity from JSON config.
entropic_error_t entropic_set_attempt_boundary_cb(entropic_handle_t handle, ent_validation_attempt_boundary_cb cb, void *user_data)
Register attempt-boundary callback on the validator.
int entropic_api_version(void)
Get the plugin API version number.
char * entropic_grammar_list(entropic_handle_t handle)
List all registered grammars as a JSON array.
static bool si_create_conversation(const char *title, std::string &conversation_id, void *user_data)
StorageInterface bridge: create_conversation trampoline.
const char * entropic_version(void)
Get the library version string.
static entropic_error_t do_state_save(entropic_handle_t handle, const char *tier_name, const char *path)
Save tier's KV cache to file body (gh#23 v2.3.25).
static entropic_error_t check_identity(entropic_handle_t h)
Check handle prerequisites for identity manager APIs.
static void wire_state_provider(entropic_handle_t h)
Wire state provider to the EntropicServer.
static int facade_get_tool_prompt(const char *tier, char **result, void *user_data)
Build formatted tool prompt for a tier.
entropic_error_t entropic_get_logprobs(entropic_handle_t handle, const char *model_id, const int32_t *tokens, int n_tokens, entropic_logprob_result_t *result)
Evaluate per-token log-probabilities for a token sequence.
static void wire_tier_validation_rules(entropic_handle_t h)
Pass per-identity validation rules to the validator.
static void wire_tool_executor(entropic_handle_t h)
Wire the ToolExecutor and attach it to the engine.
static entropic_error_t c_api_try(entropic_handle_t handle, Fn &&fn)
Run a C-API entry-point body inside an exception barrier.
entropic_error_t entropic_adapter_unload(entropic_handle_t handle, const char *adapter_name)
Unload a LoRA adapter.
static bool si_save_snapshot(const char *conversation_id, const char *messages_json, void *user_data)
StorageInterface bridge: save_snapshot trampoline.
void * entropic_alloc(size_t size)
Allocate memory using the engine's allocator.
entropic_error_t entropic_clear_user_message_queue(entropic_handle_t handle)
Drop all queued mid-gen user messages.
entropic_error_t entropic_revoke_mcp_key(entropic_handle_t handle, const char *identity_name, const char *pattern)
Revoke an MCP tool key from an identity.
char * entropic_get_identity_config(entropic_handle_t handle, const char *name)
Get identity config as JSON by name.
static char * alloc_cstr(const char *src)
Allocate a C string copy via the engine allocator.
static bool si_load_delegation_with_messages(const char *delegation_id, std::string &result_json, void *user_data)
StorageInterface bridge: load_delegation_with_messages.
Public C API for the Entropic inference engine.
ent_decision_t(* ent_delegation_start_cb)(const ent_delegation_request_t *req, void *user_data)
Callback fired before a delegation runs.
ent_decision_t(* ent_delegation_complete_cb)(const ent_delegation_result_t *res, void *user_data)
Callback fired after a delegation produces a patch.
void(* entropic_residency_observer_t)(entropic_residency_event_t event, const char *tier_name, const char *model_path, size_t footprint_bytes, void *user_data)
Residency observer callback.
entropic_residency_event_t
Reasons fired by entropic_residency_observer_t.
entropic_mcp_access_level_t
Access level enum for MCP authorization.
void(* ent_validation_attempt_boundary_cb)(int attempt_n, void *user_data)
Stream-side callback fired between constitutional revision passes.
Entropic MCP server — engine-level tools including introspection.
entropic_error_t
Error codes returned by all C API functions.
@ ENTROPIC_ERROR_NO_VISION_TIER
Image content present but no vision-capable tier (v2.1.8, gh#41)
@ ENTROPIC_ERROR_ADAPTER_SWAP_FAILED
Swap failed (e.g., base model not ACTIVE) (v1.9.2)
@ ENTROPIC_ERROR_CANCELLED
Operation cancelled via cancel token.
@ ENTROPIC_ERROR_ALREADY_EXISTS
Named resource already exists (v1.9.6)
@ ENTROPIC_ERROR_INTERNAL
Unexpected internal error (bug)
@ ENTROPIC_ERROR_IDENTITY_NOT_FOUND
Identity name not in config (v1.8.9)
@ ENTROPIC_ERROR_GRAMMAR_NOT_FOUND
Grammar key not in registry (v1.9.3)
@ ENTROPIC_ERROR_INVALID_ARGUMENT
NULL pointer, empty string, out-of-range value.
@ ENTROPIC_ERROR_QUEUE_FULL
Mid-gen user-message queue at capacity (v2.1.10, gh#40)
@ ENTROPIC_ERROR_INVALID_HANDLE
NULL or destroyed handle (v1.8.9)
@ ENTROPIC_ERROR_OUT_OF_MEMORY
Allocation failed (system RAM or VRAM)
@ ENTROPIC_ERROR_EVAL_FAILED
Evaluation failed (llama_decode error) (v1.9.10)
@ ENTROPIC_ERROR_ADAPTER_LOAD_FAILED
LoRA file invalid or incompatible with base model (v1.9.2)
@ ENTROPIC_ERROR_PROFILE_NOT_FOUND
Profile name not in registry (v1.9.7)
@ ENTROPIC_ERROR_IO
File/network I/O error.
@ ENTROPIC_ERROR_GENERATE_FAILED
Generation failed (context overflow, model error)
@ ENTROPIC_ERROR_INVALID_CONFIG
Config validation failed (missing fields, bad values)
@ ENTROPIC_ERROR_INVALID_STATE
Operation not valid in current state (e.g., generate before activate)
@ ENTROPIC_ERROR_LOAD_FAILED
Model load failed (corrupt file, OOM, unsupported format)
entropic_hook_point_t
Hook points in the engine lifecycle.
Pure C interface contract for inference backends.
void entropic_inference_log_silence(void)
Silence all llama/ggml log output.
Factory for building InferenceInterface from a ModelOrchestrator.
JSON serialization helpers for the facade.
LlamaCppBackend — llama.cpp C API integration.
Config loader — YAML to C++ structs with validation.
spdlog initialization and logger access.
ENTROPIC_EXPORT std::shared_ptr< spdlog::logger > get(const std::string &name)
Get or create a named logger.
Prompt manager — frontmatter parsing, identity loading, assembly.
Shared parser: messages-JSON wire format → vector<Message>.
@ VISION
Vision / multimodal input (v1.9.11)
bool any_message_has_images(const std::vector< Message > &messages)
Convenience: true if any message carries image content_parts.
@ tokens
Gate on generated tokens since the last tool call.
@ off
Disabled (default) — no thinking-budget gating.
@ wall_clock
Gate on wall-clock seconds since the last tool call.
std::string serialize_tool_calls(const std::vector< ToolCall > &calls)
Serialize parsed tool calls to the C-ABI JSON array form.
@ passed_consumer_override
gh#30 (v2.1.5): consumer called accept_last() to override a paused rejection.
@ rejected_reverted_length
Revision gutted content >50%; original preserved.
@ passed
No violations, content unchanged.
@ revised
Violations found; revision applied.
@ paused_pending_consumer
gh#30 (v2.1.5): auto_retry disabled and a critique failed.
@ skipped
Validation did not run (skip_tiers / pure-tool-call / empty)
@ rejected_max_revisions
Revisions exhausted; last output returned as-is.
@ DYNAMIC
Created at runtime via API.
@ STATIC
Loaded from YAML frontmatter file at startup.
void destroy_orchestrator_interface(InterfaceContext *context)
Free a context returned by build_orchestrator_interface().
std::vector< Message > parse_messages_json(const char *json_str)
Parse a JSON array of messages into a vector of Message.
MCPAccessLevel
MCP tool access level for per-identity authorization.
@ COLD
Not loaded. No resources consumed.
InferenceInterface build_orchestrator_interface(ModelOrchestrator *orchestrator, const std::string &default_tier, InterfaceContext **out_context)
Build an InferenceInterface wired to an orchestrator.
ModelOrchestrator — multi-model lifecycle and routing.
Resolved tier information for building child delegation contexts.
int max_revisions
Max re-generation attempts (0 = critique only)
bool enabled
Global enable/disable (default OFF)
bool enabled
Enable external MCP.
Named GPU resource profile for controlling inference hardware knobs.
int n_threads_batch
CPU threads for batch processing (0 = use n_threads)
int n_batch
Batch size for prompt processing (1-2048)
std::string name
Profile name ("maximum", "balanced", "background", "minimal")
int n_threads
CPU threads for generation (0 = auto-detect)
std::string description
Human-readable description.
int budget_limit
gh#80 (v2.5.0) budget ceiling: generated tokens (budget_mode "tokens") or wall-clock seconds (budget_...
std::string budget_mode
gh#80 (v2.5.0) thinking-budget mode: "off" (default), "tokens", or "wall_clock".
Full identity configuration.
std::string name
Unique identity name (e.g., "eng", "npc_blacksmith")
std::vector< std::string > focus
Classification focus keywords (min 1)
IdentityOrigin origin
How this identity was created.
std::string system_prompt
Full system prompt text (markdown body)
Configuration for the identity manager.
Configuration for the agentic loop.
int budget_limit
Budget ceiling for the active budget_mode: generated tokens (mode tokens) or wall-clock seconds (mode...
int context_length
Context budget for compaction (v2.0.4)
bool stream_output
Stream vs batch generation.
bool auto_approve_tools
Skip tool approval (v1.8.5)
BudgetMode budget_mode
Thinking-budget gating mode (gh#80, v2.5.0).
Mutable state carried through the agentic loop.
ExternalMCPConfig external
External MCP server config (Entropic-as-server)
std::string working_dir
Server working directory (empty = CWD) (v2.0.4)
A message in a conversation.
std::string content
Message text content (always populated)
std::string role
Message role.
std::unordered_map< std::string, TierConfig > tiers
Tier name → config.
std::string find_tier_by_path(const std::filesystem::path &model_path) const
Find tier name by model path.
std::string default_tier
Default tier name.
Full parsed configuration.
PermissionsConfig permissions
Tool permissions.
std::optional< std::filesystem::path > app_context
App context: nullopt = disabled by default.
CompactionConfig compaction
Auto-compaction settings.
RoutingConfig routing
Routing rules.
ModelsConfig models
Tiers + router.
ConstitutionalValidationConfig constitutional_validation
Constitutional validation pipeline settings.
std::filesystem::path log_dir
Session log directory (session.log + session_model.log).
GenerationConfig generation
Default generation params.
MCPConfig mcp
MCP server settings.
bool console_logging
Emit engine spdlog output to the stderr console sink.
bool app_context_disabled
true if app_context explicitly disabled
std::optional< std::filesystem::path > constitution
Constitution: nullopt = bundled default, disabled = explicit false.
bool constitution_disabled
true if constitution explicitly disabled
std::filesystem::path config_dir
Config dir — base for bundled data discovery.
bool auto_approve
Skip confirmation prompts.
std::unordered_map< std::string, std::vector< std::string > > handoff_rules
Tier handoff rules.
Storage interface for conversation persistence.
bool(* create_conversation)(const char *title, std::string &conversation_id, void *user_data)
Create a root conversation row.
Tier-specific model configuration.
std::optional< float > frequency_penalty
gh#85
std::optional< float > temperature
Per-tier sampler temperature from identity frontmatter (gh#82).
std::optional< float > top_p
Per-tier sampler knobs from identity frontmatter (gh#85).
std::optional< float > repeat_penalty
Per-tier repeat_penalty + enable_thinking from identity frontmatter (gh#86).
std::optional< float > min_p
gh#85
std::optional< float > presence_penalty
gh#85
std::optional< int > max_output_tokens
Per-tier max output tokens from identity frontmatter (gh#82).
std::optional< int > top_k
gh#85
std::optional< bool > enable_thinking
gh#86
std::optional< std::filesystem::path > grammar
Grammar file path.
Identity frontmatter — full tier identity metadata.
std::vector< std::string > validation_rules
Per-identity constitutional rules (v2.0.6)
std::optional< std::vector< std::string > > allowed_tools
Tool filter.
std::optional< float > top_p
Per-tier top_p (gh#85); nullopt = use param default.
std::optional< float > repeat_penalty
Per-tier repeat_penalty (gh#86); nullopt = use param default.
std::optional< float > min_p
Per-tier min_p (gh#85); nullopt = use param default.
std::optional< float > presence_penalty
Per-tier presence_penalty (gh#85); nullopt = use param default.
std::optional< bool > enable_thinking
Per-tier thinking mode (gh#86); nullopt = use param default.
std::optional< int > max_output_tokens
Per-tier max output tokens (gh#82); nullopt = use param default.
std::optional< int > top_k
Per-tier top_k (gh#85); nullopt = use param default.
bool relay_single_delegate
Skip re-synthesis when single delegate returns (v2.0.11)
std::optional< float > frequency_penalty
Per-tier frequency_penalty (gh#85); nullopt = use param default.
std::optional< std::string > grammar
Grammar file reference.
std::optional< float > temperature
Per-tier sampling temperature (gh#82); nullopt = use param default.
Parsed identity file: frontmatter + body.
Engine handle struct — owns all subsystems.
std::unique_ptr< entropic::ConstitutionalValidator > validator
Constitutional validation.
std::unique_ptr< entropic::ToolExecutor > tool_executor
Tool dispatch.
void(* critique_end_cb)(void *)
Fires after the critique generate returns.
int log_id
gh#59 (v2.3.1): unique handle id for per-handle log routing via entropic::log::HandleAwareSink.
std::unordered_map< std::string, std::vector< std::string > > tier_validation_rules
Per-tier validation_rules from identity frontmatter (v2.0.6).
std::unique_ptr< entropic::SqliteStorageBackend > storage
SQLite persistence.
entropic::InferenceInterface inference_iface
Stable copy for validator lifetime.
std::unique_ptr< entropic::SessionLogger > session_logger
Model transcript log.
std::unordered_map< std::string, std::vector< std::string > > tier_allowed_tools
Per-tier allowed_tools from identity frontmatter.
std::unique_ptr< entropic::CompactorRegistry > compactor_registry
Compaction strategies.
std::atomic< bool > configured
True after configure()
std::unique_ptr< entropic::ExternalBridge > external_bridge
Unix socket MCP bridge.
void(* state_observer)(int, void *)
Observer for engine state transitions.
entropic::config::BundledModels bundled_models
Model registry.
void * stream_observer_data
Observer user_data.
std::unique_ptr< entropic::IdentityManager > identity_manager
Identity lifecycle.
std::string last_error
Per-handle error message.
std::unique_ptr< entropic::AgentEngine > engine
Agentic loop (owns conversation state)
void * critique_cb_data
Forwarded to both callbacks.
std::unique_ptr< entropic::MCPAuthorizationManager > mcp_auth
Per-identity tool auth.
std::unique_ptr< entropic::ModelOrchestrator > orchestrator
Model pool + routing.
entropic::ParsedConfig config
Parsed config.
void(* stream_observer)(const char *, size_t, void *)
Global stream observer — fires for all streaming output.
void(* queue_observer)(const char *, size_t, void *)
Observer fired when a queued mid-gen user message is consumed and seeded as the next turn.
std::unique_ptr< entropic::ServerManager > server_manager
MCP server lifecycle.
entropic::InterfaceContext * inference_iface_ctx
Per-handle owned context backing inference_iface.user_data.
void(* critique_start_cb)(void *)
Fires before the constitutional validator's critique generate begins.
entropic::HookRegistry hook_registry
Hook dispatch.
Per-token log-probability result.
float perplexity
exp(-mean(logprobs)) over the sequence.
int32_t * tokens
Input tokens echoed back (N values).
int n_logprobs
Number of logprob values (n_tokens - 1).
int n_tokens
Number of input tokens.
float * logprobs
Per-token log-probabilities (N-1 values).
float total_logprob
Sum of all logprob values.
Read-only engine state provider for introspection tools.
char *(* get_config)(void *user_data)
Get current engine configuration as JSON.
UTF-8-boundary-aware string truncation helper for the facade.