Skip to content
This repository was archived by the owner on Feb 25, 2026. It is now read-only.
Open
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
17 changes: 16 additions & 1 deletion research_agent/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,19 @@
# description="...",
# )

root_agent = None # Replace this with your Agent definition
root_agent = Agent(
name="research_agent",
model="gemini-2.0-flash",
description="A research assistant that helps users find and understand information.",
instruction="""You are a helpful research assistant. Your goal is to help users
find information and answer their questions clearly and accurately.

When responding to questions:
1. Provide clear, well-structured answers
2. If you're not sure about something, say so
3. Break down complex topics into understandable parts
4. Cite your reasoning when making claims

Remember: In this version, you don't have access to external tools or
the internet. Answer based on your training knowledge.""",
)