#!/bin/bash # Start the FastAPI Backend in the background uvicorn src.main:app --host 0.0.0.0 --port 7860 & # Start the Gradio UI python src/gui.py