Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Embed agents in your applications
Embed in Application
use praisonai::Agent; // Create agent as part of your application let agent = Agent::new() .name("Assistant") .build()?; // Use in your app logic async fn handle_user_query(query: &str) -> String { agent.chat(query).await.unwrap() }