Skip to content
This repository was archived by the owner on Feb 25, 2026. It is now read-only.
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Google AI API Key (for local development)
# Get your key at: https://aistudio.google.com/apikey
GOOGLE_API_KEY=your-api-key-here
GOOGLE_API_KEY=AIzaSyDP5yBWyz5henhy3nKD-C1AOx4EI4FJYM0

# Set to TRUE to use Vertex AI instead of Google AI API
GOOGLE_GENAI_USE_VERTEXAI=FALSE
Expand Down
13 changes: 12 additions & 1 deletion research_agent/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,15 @@
# description="...",
# )

root_agent = None # Replace this with your Agent definition
root_agent = Agent(
name = "simple_research_agent",
model = "gemini-2.0-flash",
instruction="""
You are a helpful research assistant. Your goal is to help users
find information and answer questions.

Remember: In this version you do not have access to any tools and
all information must come from your training knowledge.
""",
description = "simple research agent"
) # Replace this with your Agent definition