rig-resources 0.1.3

Reusable skills, tools, behavior patterns, and resource adapters for rig-compose agents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Selective entity-graph resources.

pub mod inmem;
pub mod skills;
pub mod store;
pub mod tool;

pub use inmem::InMemoryGraph;
pub use skills::{GraphExpansionConfig, GraphExpansionSkill};
pub use store::{GraphEdge, GraphError, GraphStore, Subgraph};
pub use tool::GraphTool;