| Crates.io | rrag-graph |
| lib.rs | rrag-graph |
| version | 0.1.0-alpha.1 |
| created_at | 2025-08-12 07:17:51.996951+00 |
| updated_at | 2025-08-12 07:17:51.996951+00 |
| description | Graph-based agent orchestration system built on RRAG framework |
| homepage | https://github.com/leval-ai/rrag |
| repository | https://github.com/leval-ai/rrag |
| max_upload_size | |
| id | 1791535 |
| size | 264,060 |
Graph-based agent orchestration system built on the RRAG framework.
RGraph provides a powerful graph-based orchestration layer for building complex AI agent workflows. It enables developers to create sophisticated multi-agent systems with conditional routing, parallel execution, and state management.
use rrag_graph::prelude::*;
// Create a graph with agents
let graph = GraphBuilder::new()
.add_node("agent1", AgentNode::new("Assistant 1"))
.add_node("agent2", AgentNode::new("Assistant 2"))
.add_edge("agent1", "agent2")
.build()?;
// Execute the graph
let result = graph.execute(initial_state).await?;
Add to your Cargo.toml:
[dependencies]
rrag-graph = "0.1.0-alpha.1"
For detailed documentation, visit docs.rs/rrag-graph.
MIT License - see LICENSE file for details.
Contributions are welcome! Please see our Contributing Guide.