rho-coding-agent 1.2.0

A lightweight agent harness inspired by Pi
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod adapters;
mod fetch;
mod sdk_fetch_content;
mod search;
mod storage;
mod util;

pub use adapters::{GetSearchContent, WebSearch};
pub(super) use sdk_fetch_content::SdkFetchContent;

pub(super) fn access_tools(config: &crate::config::Config) -> WebSearch {
    WebSearch::with_client(config, util::http_client())
}

#[cfg(test)]
#[path = "tests.rs"]
mod tests;