Running the Agentic App Demo

September 24, 2025 ยท View on GitHub

Before you begin

  1. Make sure you have setup and initialized your Database.

  2. Make sure you are able to launch Toolbox server.

  3. Make sure you have Python 3.11+ installed

Setting up your Environment

  1. Set up Application Default Credentials:

    gcloud auth application-default login
    
  2. Install the dependencies using pip. You may wish to do this in a virtual environment, e.g. venv:

    pip install -r requirements.txt
    

Tip

If you are running into 403 error, check to make sure the service account you are using has the Cloud Run Invoker IAM in the retrieval service project.

Running the Demo

  1. Start the app with:

    python run_app.py
    
  2. View app in your browser at http://localhost:8081

Tip

For hot reloading, use the --reload flag

python run_app.py --reload`