Skip to content

Latest commit

 

History

History
77 lines (51 loc) · 1.78 KB

README.md

File metadata and controls

77 lines (51 loc) · 1.78 KB

Demo Agents

This repo contains the code for running phidata demo-agents in 2 environments:

  1. dev: A development environment running locally on docker
  2. prd: A production environment running on AWS ECS

Setup Workspace

  1. Clone the git repo

from the demo-agents dir:

  1. Install workspace and activate the virtual env:
./scripts/install.sh
source .venv/bin/activate
  1. Setup workspace:
phi ws setup
  1. Copy workspace/example_secrets to workspace/secrets:
cp -r workspace/example_secrets workspace/secrets
  1. Optional: Create .env file:
cp example.env .env

Run Demo Agents locally

  1. Install docker desktop

  2. Set OpenAI Key

Set the OPENAI_API_KEY environment variable using

export OPENAI_API_KEY=sk-***

OR set in the .env file

  1. Start the workspace using:
phi ws up

Open localhost:8000/docs to view the demo agents api.

  1. Stop the workspace using:
phi ws down

Next Steps: