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
15
//! `widgets` layer (FSD): composite UI blocks (chat_list, message_feed, input_box,
//! status_bar, dialogs). See spec §4.2, §11.
//!
//! Filled in starting M3.

pub mod chat_link_picker;
pub mod chat_list;
pub mod emoji_picker;
pub mod help_dialog;
pub mod impersonation_preview;
pub mod input_box;
pub mod logo;
pub mod message_feed;
pub mod profile_list;
pub mod status_bar;