-
Notifications
You must be signed in to change notification settings - Fork 64
Closed
Description
Describe the bug
I follow the sample and created a search assistant agent like this:
from google.adk.tools import google_search
root_agent = Agent(
name="search_assistant",
model="gemini-2.0-flash",
instruction="You are a helpful assistant. Answer user questions using Google Search when needed.",
description="An assistant that can search the web.",
tools=[google_search]
)
I can run it by adk run multi_tool_agent command, but I when I run adk web, I see a blank black page. I can see that the request is received and return 200 ok, but the page is just blank. I don't know what happen.
To Reproduce
Steps to reproduce the behavior:
- Follow quickstart to setup the folder and files, add .env file, add agent.py.
- Activate python virtual environment
- Go to parent directory and execute adk web, adk server started successfully
- I visit http://127.0.0.1:8000/dev-ui, http://localhost:8000/dev-ui, all give me a black blank page. I tried incognito mode, and different browsers, not working at all.
Expected behavior
I expected a web interface
Screenshots
Desktop (please complete the following information):
- OS: windows 11
- Python version(python -V): 3.10.6
- ADK version(pip show google-adk): 0.1.0
jjbdot