devai 0.5.12

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

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

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

// endregion: --- Modules