feat: 呱哒Agent引擎拆件落地——ReAct循环/审批机关/水位记忆管理/笔记习惯制(冰朔20260816谕:拆件学艺重装光湖人格驱动)
This commit is contained in:
parent
07fd4c85ef
commit
e7b01031f8
4 changed files with 1308 additions and 1 deletions
|
|
@ -1463,6 +1463,7 @@ dependencies = [
|
||||||
"base64 0.22.1",
|
"base64 0.22.1",
|
||||||
"dirs",
|
"dirs",
|
||||||
"fs2",
|
"fs2",
|
||||||
|
"futures-util",
|
||||||
"reqwest",
|
"reqwest",
|
||||||
"ring",
|
"ring",
|
||||||
"rusqlite",
|
"rusqlite",
|
||||||
|
|
@ -1475,6 +1476,7 @@ dependencies = [
|
||||||
"tauri-runtime",
|
"tauri-runtime",
|
||||||
"tauri-runtime-wry",
|
"tauri-runtime-wry",
|
||||||
"tempfile",
|
"tempfile",
|
||||||
|
"tokio",
|
||||||
"url",
|
"url",
|
||||||
"uuid",
|
"uuid",
|
||||||
]
|
]
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,9 @@ tauri-plugin-updater = "2.10.0"
|
||||||
tauri-plugin-dialog = "=2.7.2"
|
tauri-plugin-dialog = "=2.7.2"
|
||||||
uuid = { version = "1", features = ["v4"] }
|
uuid = { version = "1", features = ["v4"] }
|
||||||
url = "2"
|
url = "2"
|
||||||
reqwest = { version = "0.13.2", default-features = false, features = ["json", "rustls"] }
|
reqwest = { version = "0.13.2", default-features = false, features = ["json", "rustls", "stream"] }
|
||||||
|
tokio = { version = "1", features = ["time"] }
|
||||||
|
futures-util = "0.3"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tempfile = "3"
|
tempfile = "3"
|
||||||
|
|
|
||||||
1297
product-source/hololake-native-desktop/src-tauri/src/agent_engine.rs
Normal file
1297
product-source/hololake-native-desktop/src-tauri/src/agent_engine.rs
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -1,3 +1,4 @@
|
||||||
|
mod agent_engine;
|
||||||
mod agent_host;
|
mod agent_host;
|
||||||
mod agent_parlor;
|
mod agent_parlor;
|
||||||
mod code_channel;
|
mod code_channel;
|
||||||
|
|
@ -86,6 +87,11 @@ pub fn run() {
|
||||||
code_repo_login::sign_out_code_repo_login,
|
code_repo_login::sign_out_code_repo_login,
|
||||||
agent_host::receive_agent_task_envelope,
|
agent_host::receive_agent_task_envelope,
|
||||||
agent_host::query_agent_session_memory,
|
agent_host::query_agent_session_memory,
|
||||||
|
agent_engine::run_agent_engine_task,
|
||||||
|
agent_engine::resume_agent_engine,
|
||||||
|
agent_engine::submit_engine_memory,
|
||||||
|
agent_engine::restore_engine_memory,
|
||||||
|
agent_engine::query_engine_session,
|
||||||
zero_point::zero_point_bind,
|
zero_point::zero_point_bind,
|
||||||
zero_point::zero_point_verify,
|
zero_point::zero_point_verify,
|
||||||
zero_point::zero_point_sync,
|
zero_point::zero_point_sync,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue