feat(soul): add sessions layer, MCP connectors, conversation continuity fix
- sessions.el: new sessions module with session management and approval gate
- routes.el: wire /api/sessions routes (list, get, create, approve, tool_result)
- chat.el: thread-aware activation — short messages anchor to last reply
before engram compilation so follow-ups stay on-topic
- chat.el: agentic path tracks per-session history (session_hist_{id})
instead of shared conv_history, seeding each turn with prior context
- chat.el: add call_neuron_mcp, dispatch_tool, is_builtin_tool, next_bridge_id
agentic_loop, bridge_save, agentic_resume, handle_tool_result
- dist/soul: rebuild with all of the above
This commit is contained in:
+7
-2
@@ -193,10 +193,10 @@ el_val_t realize_question_lang(el_val_t predicate, el_val_t tense, el_val_t aspe
|
||||
loc_part = core;
|
||||
}
|
||||
if (str_eq(code, EL_STR("ja"))) {
|
||||
return el_str_concat(loc_part, EL_STR(" \xe3\x81\x8b"));
|
||||
return el_str_concat(loc_part, EL_STR(" か"));
|
||||
}
|
||||
if (str_eq(code, EL_STR("hi"))) {
|
||||
return el_str_concat(loc_part, EL_STR(" \xe0\xa4\x95\xe0\xa5\x8d\xe0\xa4\xaf\xe0\xa4\xbe"));
|
||||
return el_str_concat(loc_part, EL_STR(" क्या"));
|
||||
}
|
||||
if (str_eq(code, EL_STR("fi"))) {
|
||||
return el_str_concat(loc_part, EL_STR("-ko"));
|
||||
@@ -314,3 +314,8 @@ el_val_t realize(el_val_t form) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
int main(int _argc, char** _argv) {
|
||||
el_runtime_init_args(_argc, _argv);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user