Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 954 Bytes

readme.md

File metadata and controls

25 lines (18 loc) · 954 Bytes

Testing the demo solution

it is strongly advised to create a python virtual environment, for example you can use: python -m venv .env source .env/bin/activate

To run the solution, ensure you have the required packages installed. You can do this using pip: pip install -r requirements.txt

Setup Secrets

To set up your keys/secrets, create a .env.local file in the root directory and add the following keys in the specified format: OPENAI_API_KEY=your_openai_api_key_here SOME_OTHER_KEY=your_other_key_here

Example .env file content:

AZURE_COGNITIVE_SERVICE_KEY=your_cognitbve_key AZURE_COGNITIVE_SERVICE_ENDPOINT=https://.cognitiveservices.azure.com/

You can use the .env file as a template

Running the demo

Run the Streamlit application using the following command: streamlit run app.py