gemini_memory_rs/runtime/
mod.rs1#[cfg(feature = "fluent")]
10pub mod live;
11#[cfg(feature = "fluent")]
12pub mod spec_binding;
13pub mod tools;
14pub mod turn_extractor;
15
16#[cfg(feature = "fluent")]
17pub use live::{LiveMemoryExt, memory_tools};
18#[cfg(feature = "fluent")]
19pub use spec_binding::SessionMemoryBinding;
20pub use tools::{
21 MANAGE_TOOL, MEMORY_TOOLS, ManageArgs, RECALL_TOOL, RecallArgs, RecallScope,
22 manage_memory_tool, recall_context_tool,
23};
24pub use turn_extractor::{MEMORY_EXTRACTOR_NAME, MemorySlot, MemorySlotError, MemoryTurnExtractor};