A powerful Python framework for building intelligent agents using Google's Gemini API. This framework simplifies the creation of agents that can break down complex tasks into sequential steps using available tools, with support for function calling, variable management, and structured responses.
- π οΈ Easy Tool Definition: Define tools using simple decorators
- π Sequential Task Breakdown: Automatically breaks down complex tasks into manageable steps
- π¦ Variable Management: Store and manage variables with metadata
- π― Structured Responses: Define response structures for consistent outputs
- π Intermediate Results: Access and manage intermediate results
- π‘οΈ Error Handling: Built-in error handling and recovery mechanisms
- π Extensible: Easy to extend with custom tools and functionality
pip install gemini-agent-frameworkfrom gemini_agent import Agent
from dotenv import load_dotenv
load_dotenv()
# Define your tools
@Agent.description("Multiplies two numbers.")
@Agent.parameters({
'a': {'type': int, 'description': 'The first number'},
'b': {'type': int, 'description': 'The second number'}
})
def multiply(a: int, b: int) -> int:
return a * b
# Create an agent instance
agent = Agent(api_key="your-api-key", tools=[multiply])
# Use the agent
response = agent.prompt("Multiply 3 and 7")
print(response) # Should output 21# Store variables with metadata
agent.set_variable("user_name", "John", "The current user's name", str)
agent.set_variable("last_login", datetime.now(), "Last login timestamp", datetime)
# Retrieve variables
name = agent.get_variable("user_name")response_structure = {
"result": {"type": "number"},
"explanation": {"type": "string"}
}
response = agent.prompt(
"Calculate 5 * 7 and explain the process",
response_structure=response_structure
)system_prompt = """
You are a helpful assistant that specializes in mathematical calculations.
Always show your work and explain your reasoning.
"""
response = agent.prompt(
"Solve 15 * 23",
system_prompt=system_prompt
)For detailed documentation, please visit our documentation site.
We welcome contributions! Please see our Contributing Guidelines for details.
- Clone the repository
- Install development dependencies:
pip install -e ".[dev]" - Run tests:
pytest
This project is licensed under the MIT License - see the LICENSE file for details.
If you use this framework in your research, please cite:
@software{gemini_agent_framework,
author = {Mohamed Baathman},
title = {Gemini Agent Framework},
year = {2025},
url = {https://github.com/m7mdony/gemini-agent-framework}
}