Skip to main content
CrewAI is a production-grade multi-agent orchestration framework. It allows autonomous agents to collaborate by assuming specific roles, sharing context, and executing interdependent tasks.

Setup

Install the CrewAI package:

LLM Initialization

Use the crewai.LLM class with the neosantara/<model> provider prefix to connect Neosantara models to your CrewAI agents. Credentials can be passed explicitly or automatically loaded from the NEOSANTARA_API_KEY environment variable.

Multi-Agent Workflow Example

The following example orchestrates two agents: a Researcher that gathers insights, and a Writer that compiles a concise technical overview from the research.

Next Steps