Skip to content

Harrishayy/uncookd

Repository files navigation

This is a Next.js project bootstrapped with create-next-app.

Getting Started

First, run the development server:

npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev

Open 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.

CrewAI Backend Setup

This project includes a Python backend for CrewAI multi-agent operations. To set it up:

  1. Navigate to the backend directory:
cd crewai_backend
  1. Create a virtual environment:
python -m venv venv
source venv/bin/activate  # On Windows: venv\Scripts\activate
  1. Install dependencies:
pip install -r requirements.txt
  1. Run the backend server:
python main.py
# Or with uvicorn directly:
uvicorn main:app --reload --port 8000

The backend will run on http://localhost:8000

Connecting Frontend and Backend

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.

Learn More

To learn more about Next.js, take a look at the following resources:

You can check out the Next.js GitHub repository - your feedback and contributions are welcome!

Deploy on Vercel

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.

About

helping everyone :) - 1st Place in AgentVerse Hackathon (Hosted by UCL, AWS, Anthropic, Cisco, EF)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors