This is a Next.js project bootstrapped with create-next-app.
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun devOpen http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.tsx. The page auto-updates as you edit the file.
This project includes a Python backend for CrewAI multi-agent operations. To set it up:
- Navigate to the backend directory:
cd crewai_backend- Create a virtual environment:
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate- Install dependencies:
pip install -r requirements.txt- Run the backend server:
python main.py
# Or with uvicorn directly:
uvicorn main:app --reload --port 8000The backend will run on http://localhost:8000
The Next.js frontend communicates with the Python backend through:
- Next.js API Routes:
app/api/crewai/ - TypeScript Client:
lib/crewai-client.ts - Example Component:
app/components/CrewAIExample.tsx
The backend is configured with CORS to allow connections from http://localhost:3000 (Next.js default port).
For detailed backend documentation, see crewai_backend/README.md.
This project uses next/font to automatically optimize and load Geist, a new font family for Vercel.
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out our Next.js deployment documentation for more details.