aipack 0.7.7-WIP

Command Agent runner to accelerate production coding with genai.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// region:    --- Modules

mod agent_common;
mod agent_doc;
mod agent_locator;
mod agent_options;
mod agent_ref;
mod prompt_part;

pub use agent_common::*;
pub use agent_doc::*;
pub use agent_locator::*;
pub use agent_options::*;
pub use agent_ref::*;
pub use prompt_part::*;

// endregion: --- Modules