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.
LLM provider integrations
Use a Provider
use praisonai::Agent; // OpenAI (default) let agent = Agent::new() .model("gpt-4o") .build()?; // Anthropic let agent = Agent::new() .model("claude-3-opus") .build()?; // Ollama (local) let agent = Agent::new() .model("ollama/llama3") .build()?;
OPENAI_API_KEY
ANTHROPIC_API_KEY
AZURE_*