| Crates.io | rexis-graph |
| lib.rs | rexis-graph |
| version | 0.1.0 |
| created_at | 2025-11-09 11:32:59.675599+00 |
| updated_at | 2025-11-09 11:32:59.675599+00 |
| description | Rexis Graph - Graph-based agent orchestration with hybrid state management and memory integration |
| homepage | https://github.com/0xteamhq/rexis |
| repository | https://github.com/0xteamhq/rexis |
| max_upload_size | |
| id | 1924034 |
| size | 290,822 |
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.