This repository accompanies our research paper: DynEx: Dynamic Code Synthesis and Structured Design Exploration For Accelerated Exploratory Programming. It contains the code to our core dimensions for Design Matrix exploration, as well as our modular code generation pipeline. Below are the steps to set up DynEx on your local machine.
In one terminal...
Make sure npm, react, and mui are installed
cd frontend
npm start
In another terminal...
cd backend
conda env create -n UIDesignProto -f environment.yml
pip install as 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 UIDesignProto
python server.py