kepoki/lib.rs
1//! Agenetic is a framework for building AI agents that can interact with each other and the world.
2//! It provides a runtime for executing agents, a protocol for managing interactions, and an agent model for defining agent behavior.
3
4pub mod agent;
5pub mod backend;
6pub mod error;
7pub mod runtime;
8pub mod servers;