Running the Agentic App Demo
September 24, 2025 ยท View on GitHub
Before you begin
-
Make sure you have setup and initialized your Database.
-
Make sure you are able to launch Toolbox server.
-
Make sure you have Python 3.11+ installed
Setting up your Environment
-
Set up Application Default Credentials:
gcloud auth application-default login -
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
-
Start the app with:
python run_app.py -
View app in your browser at http://localhost:8081
Tip
For hot reloading, use the --reload flag
python run_app.py --reload`