setup / README.md
AnanthulaShravya's picture
Upload 7 files
d52ae5a verified

A newer version of the Streamlit SDK is available: 1.55.0

Upgrade
metadata
title: AI Workflows
app_file: ui_main.py
sdk: streamlit
sdk_version: 1.35.0
pinned: false
python_version: 3.11.0

Initial Setup

  • Install python using conda by running the following command. conda create -p venv python==3.11 -y
  • Activate conda profile conda activate ./venv
  • Install required packages ./venv/bin/pip install -r requirements.txt
  • Copy .env.example to .env and enter the required values.

Release process

API server
Streamlit UI

Running on local

  • Streamlit app streamlit run ui_main.py
  • FastAPI app uvicorn endpoints:app --port=8080