You must run both the FE and BE for this repository.
In one terminal...
Make sure npm, react, and mui are installed
cd frontend
npm start
In another terminal...
cd backend
conda env create -n dynex -f environment.yml
- pip install more dependencies if necessary
- create a
.env
file within the backend directory
and add your Open AI API key and Anthropic API Key. They should be saved as follows:"ANTHROPIC_API_KEY"="xyz"
, and"OPENAI_API_KEY"="xyz"
- create a
generated
folder within backend directory - this is where all the generated code will stay
conda activate dynex
python server.py