Files
ai-gateway/.agent/workflows/setup_with_uv.md

632 B

description
description
How to run the application using uv
  1. Initialize Project (Already done) If you haven't already:

    uv init
    
  2. Install Dependencies (Already done) Install required packages:

    uv add -r requirements.txt
    
  3. Run Application You can run the application directly using uv run. This automatically uses the virtual environment managed by uv.

    Option A: Using the run script (Recommended)

    uv run run.py
    

    Option B: Using Uvicorn directly

    uv run uvicorn app.main:app --reload