File size: 594 Bytes
4790e0d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
## To run the app in local
1. Clone the repo, switch to `dev` branch
2. Create a conda environment using the following command:
   ```
   conda create -p env python==3.10 -y
   ```
3. Activate the environment
   `conda activate /Users/sachinmishra/Desktop/Pizza-gpt/env`

4. Install all the required package using the following command:
   `pip install -r requirements.txt`

5. Rename the `.env.dist` file to `.env` and provide the OPENAI_API_KEY properly.

6. Run the app - `streamlit run main.py`
7. To test only llm part, run the `langchain_helper.py` file using `python langchain_helper.py`