synwire-agent 0.1.0

Agent runtime implementations for synwire
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Project-local and global experience pool.
//!
//! Records associations between tasks (prompts/descriptions) and the files
//! they modified, enabling experience-guided file localization for future
//! similar tasks.

mod pool;

pub use pool::{
    ExperienceEntry, ExperienceError, ExperiencePool, TieredExperiencePool, record_edit_completion,
};