Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 490 Bytes

File metadata and controls

24 lines (15 loc) · 490 Bytes

A simple repo to showcase AI agent capabilities using FastAPI and React

  1. To run, create a virtual env and install dependencies
python -m venv <name>

source <name>/bin/activate

pip install -r requirements.txt
  1. Generate and create a free OpenAI API key for CrewAI usage. Set it as an env variable.

export OPENAI_API_KEY=<your api key>

  1. To run the FastAPI server,
uvicorn api:api --port 8080 --reload
  1. To run the frontend: cd frontend and then npm start