feat: agent brain (ollama) and chat ui

This commit is contained in:
Dave
2025-12-24 17:17:35 +00:00
parent 76e03bc1a2
commit d9cd16601b
18 changed files with 1712 additions and 14 deletions

View File

@@ -1,4 +1,5 @@
mod commands;
mod llm;
mod state;
use state::SessionState;
@@ -15,7 +16,8 @@ pub fn run() {
commands::fs::write_file,
commands::fs::list_directory,
commands::search::search_files,
commands::shell::exec_shell
commands::shell::exec_shell,
commands::chat::chat
])
.run(tauri::generate_context!())
.expect("error while running tauri application");