mindfork 0.10.2

A terminal AI chat written in Rust: local models via llama.cpp or OpenAI, Anthropic, Gemini and Grok in the cloud, with persistent memory, notes, RAG and tools.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! The `screens` layer (FSD, analogous to "pages"): whole screens (chat, chat_list,
//! settings). See spec §4.2, §11.1.
//!
//! `settings.rs` — the settings screen (M8); `chat_list.rs` — the fullscreen chat
//! list (opened from the chat via `Esc`).

pub mod awaited_chat;
pub mod changes;
pub mod chat;
pub mod chat_list;
pub mod search;
pub mod self_model;
pub mod settings;
pub mod tasks;