This commit renames the terminology across the entire codebase: - "mental models" (fact_type='mental_model' in memory_units) → "observations" - "reflections" table (stored reflect responses) → "mental_models" Changes include: - Database migration to rename tables, indexes, and constraints - API endpoints: /reflections → /mental-models, /mental-models → /observations - Config: ENABLE_MENTAL_MODELS → ENABLE_OBSERVATIONS - Response models and Pydantic classes - Reflect agent tools and prompts - Control plane UI and routes - Documentation and examples - Regenerated OpenAPI spec and client SDKs (Python, TypeScript) - Rust CLI: reflection commands → mental-model commands - LiteLLM: updated fact_types documentation
11 lines
185 B
Rust
11 lines
185 B
Rust
pub mod bank;
|
|
pub mod chunk;
|
|
pub mod directive;
|
|
pub mod document;
|
|
pub mod entity;
|
|
pub mod explore;
|
|
pub mod health;
|
|
pub mod memory;
|
|
pub mod operation;
|
|
pub mod mental_model;
|
|
pub mod tag;
|