Rust AI Agent SDKAgent module for PraisonAIThis module provides the core Agent struct and builder pattern.
Agents are the primary execution unit in PraisonAI.
use praisonai_core::Agent;let agent = Agent::new().name("assistant").instructions("You are a helpful assistant").build();let response = agent.chat("Hello!").await?;