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 `entities` layer (FSD): domain types with no I/O. See spec §4.2, §5.1.

pub mod attachment;
pub mod chat;
pub mod chat_file;
pub mod message;
pub mod message_image;
pub mod note;
pub mod profile;
pub mod rag;
pub mod sampling;
pub mod self_model;
pub mod subagent;
pub mod workspace;