File size: 9,139 Bytes
5fbd0a0 15a3001 f4c14e9 5fbd0a0 15a3001 f4c14e9 15a3001 f4c14e9 72d31a2 f4c14e9 5fbd0a0 15a3001 5fbd0a0 15a3001 5fbd0a0 15a3001 5fbd0a0 15a3001 5fbd0a0 15a3001 f4c14e9 15a3001 a92388a 15a3001 a92388a 15a3001 a92388a 15a3001 a92388a 15a3001 5fbd0a0 15a3001 5fbd0a0 15a3001 9b507b3 15a3001 5fbd0a0 15a3001 5fbd0a0 15a3001 5fbd0a0 15a3001 5fbd0a0 15a3001 f4c14e9 15a3001 a660a07 5fbd0a0 8cc2fb6 5fbd0a0 15a3001 5fbd0a0 15a3001 d02a7bb 5fbd0a0 15a3001 5fbd0a0 15a3001 8cc2fb6 15a3001 72d31a2 5fbd0a0 15a3001 72d31a2 15a3001 8cc2fb6 b34cbc0 15a3001 5fbd0a0 15a3001 5fbd0a0 15a3001 5fbd0a0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 | # pip install smolagents python-chess stockfish pandas numpy requests markdownify
# Generic agent
import os
from typing import Optional
import pandas as pd
# Genai imports
from google import genai
from google.genai import types
# Smolagents imports
from smolagents import (
CodeAgent,
InferenceClientModel,
TransformersModel,
LiteLLMModel,
DuckDuckGoSearchTool,
VisitWebpageTool,
PythonInterpreterTool,
FinalAnswerTool,
)
# LiteLLM
from litellm import token_counter
# Import your custom tools (to be used in app, not in local notebook)
from tools.gemini_native_tools import analyze_video, analyze_image, analyze_audio
from tools.download_file import download_file_from_url
from tools.files_to_text import image_to_text, pdf_to_text, text_file_to_string
from tools.audio_tools import youtube_to_text, transcribe_audio
# Define tools
AGENT_TOOLS = [
# Default Tools
DuckDuckGoSearchTool(), # Internet search
VisitWebpageTool(), # Retrieve webpage content
PythonInterpreterTool(), # Executes agent-generated Python code
FinalAnswerTool(), # Ends agent reasoning and returns final answer
# Custom Tools
download_file_from_url, # file downloader
text_file_to_string, # .txt, .md, .json, etc.
pdf_to_text, # PyMuPDF-based safe PDF parser
image_to_text, # OCR for images
youtube_to_text, # Youtube audio to text
transcribe_audio, # Audio file to text
]
# Gemini-only tools
NATIVE_TOOLS = [
analyze_video,
analyze_image,
analyze_audio
]
# Define authorized imports
AUTHORIZED_IMPORTS = [
'numpy','re', 'pandas', 'json', 'datetime',
'tempfile','requests', 'markdownify', 'chess.*',
]
# --- SYSTEM PROMPT TEMPLATE ---
# The {} placeholder will be filled differently for Basic vs Gemini (Native)
SYSTEM_PROMPT_TEMPLATE = """
You are an expert **General AI Assistant** and **Python Programmer** tasked with solving complex GAIA benchmark problems.
### 1. Reason-Act-Observe
Follow a **PLAN → ACT → OBSERVE** loop:
- **PLAN:** Break the task into 1–3 logical steps. Identify tools for each step.
- **ACT:** Write and run one self-contained Python block per step.
- **OBSERVE:** Examine outputs or errors before proceeding.
### 2. File Handling
{file_handling_instructions}
**Important rules:**
- Whenever you are given a file path (or url), you **must ABSOLUTELY store it in a variable first** (e.g. filepath`) and pass that variable directly to the next tool. **NEVER** try to write the path yourself in the function.
- You must **not** mix methods across file types (e.g. do not use Whisper for CSVs or pandas for audio).
### 3. Data Analysis & Answer
- Inspect loaded datasets first (`.head()`, `.info()`, `.describe()`) before analysis.
- Write clean, idiomatic Python code. Before that, check if there is any pre-made tool that would work for the task.
### 4. Additional instructions for the following tasks provided by GAIA team
- You are a general AI assistant. I will ask you a question. Do not reveal your internal reasoning. Only the content inside FinalAnswerTool will be evaluated.
- YOUR FINAL ANSWER should be a number OR as few words as possible OR a comma separated list of numbers and/or strings. If you are asked for a number, don't use comma to write your number neither use units such as $ or percent sign unless specified otherwise. If you are asked for a string, don't use articles, neither abbreviations (e.g. for cities), and write the digits in plain text unless specified otherwise. If you are asked for a comma separated list, apply the above rules depending of whether the element to be put in the list is a number or a string.
- Do NOT include "FINAL ANSWER:" in your final answer text. For example: if the question is "What is the capital of Spain?", respond with "Madrid". It is exact and expected answer.
### 5. To provide the final answer, you MUST call the final_answer tool inside a <code> block.
- Example of how to end the task:
Question: "What is the capital of France?"
Thought: I have found the answer. I will now provide it.
<code>
final_answer("Paris")
</code>
"""
# Instruction for Tool-Based Agents (BasicAgent and Gemini-Standard)
TOOL_BASED_INSTRUCTIONS = """
You must select the reading or transcription method **strictly** based on the file type:
| File Type / Source | Tool / Method to Use |
| :--- | :--- |
| `.csv` | `pd.read_csv(filepath)` |
| `.xlsx`, `.xls` | `pd.read_excel(filepath)` |
| `.pdf` | `pdf_to_text(filepath)` |
| `.txt`, `.md`, `.json` | `text_file_to_string(filepath)` |
| `.png`, `.jpg`, `.jpeg` | `image_to_text(filepath)` |
| **YouTube URL** | `youtube_to_text(url)` |
| `.mp3`, `.wav`, `.m4a` | `transcribe_audio(filepath)` |
"""
# Instruction for Native Gemini (No OCR/Transcribe tools for media)
NATIVE_MEDIA_INSTRUCTIONS = """
You have **native vision and audio capabilities**.
- For **Images (.png, .jpg) and Audio/Video**: Do NOT use external tools like `image_to_text`. You can see and hear these files directly. Analyze them using your internal multimodal capabilities.
- For **Data/Text files**: Continue using tools like `pd.read_csv(filepath)` or `text_file_to_string(filepath)`.
"""
class BasicAgent:
def __init__(self):
self.system_prompt = SYSTEM_PROMPT_TEMPLATE.format(file_handling_instructions=TOOL_BASED_INSTRUCTIONS)
self.model = InferenceClientModel(
model_id = "Qwen/Qwen3-Next-80B-A3B-Thinking",
temperature = 0.0,
top_p = 1.0,
max_tokens = 2048,
)
self.basic_agent = CodeAgent(
name = "basic_agent",
description = "Basic smolagents CodeAgent",
model = self.model,
tools = AGENT_TOOLS,
add_base_tools = True, # probably redundant, but it does not hurt
max_steps = 5,
additional_authorized_imports = AUTHORIZED_IMPORTS,
verbosity_level = 1,
max_print_outputs_length=1_000_000
)
print("✅ Basic agent initialized")
def __call__(self, question: str, file_path: Optional[str] = None) -> str:
prompt = f"{self.system_prompt}\n\nQuestion: {question}"
if file_path:
prompt += f"\nFile path: {file_path}"
return self.basic_agent.run(prompt)
class GeminiAgent:
def __init__(self, native_multimodal: bool = True, model_id: str = "gemini/gemma-3-27b-it"): # gemini/gemini-2.5-flash-lite; gemini/gemini-3-flash-preview
self.native_multimodal = native_multimodal
self.model_id = model_id
if self.native_multimodal:
client = genai.Client(api_key=os.environ.get("GOOGLE_API_KEY"))
# Switch prompt based on the native_multimodal flag
INSTRUCTIONS = NATIVE_MEDIA_INSTRUCTIONS if native_multimodal else TOOL_BASED_INSTRUCTIONS
self.system_prompt = SYSTEM_PROMPT_TEMPLATE.format(file_handling_instructions=INSTRUCTIONS)
GOOGLE_API_KEY = os.environ.get("GOOGLE_API_KEY")
if not GOOGLE_API_KEY:
raise RuntimeError(
"GOOGLE_API_KEY not found."
)
self.model = LiteLLMModel(
model_id = model_id,
api_key = GOOGLE_API_KEY,
temperature = 0.0,
top_p = 1.0,
max_tokens = 2048,
timeout = 120 # Add timeout to prevent hanging
)
# If native, we can optionally remove image_to_text from tools to prevent the agent from getting confused
if self.native_multimodal:
self.tools = NATIVE_TOOLS + [t for t in AGENT_TOOLS if t not in [image_to_text, youtube_to_text, transcribe_audio]]
else:
self.tools = AGENT_TOOLS
self.gemini_agent = CodeAgent(
name = "gemini_agent",
description = f"Gemini CodeAgent ({model_id})",
model = self.model,
tools = self.tools,
add_base_tools = True, # probably redundant, but it does not hurt
max_steps = 4,
additional_authorized_imports = AUTHORIZED_IMPORTS,
verbosity_level = 1,
max_print_outputs_length=2_000
)
print(f"✅ Gemini agent initialized with model: {model_id}")
def check_token_safety(self, question):
messages = self.gemini_agent.memory.get_messages()
count = token_counter(model="gemma3", messages=messages)
print(f"📊 Current Context Size: {count} tokens")
return count
def __call__(self, question: str, file_path: Optional[str] = None) -> str:
prompt = f"{self.system_prompt}\n\nQuestion: {question}"
if file_path:
prompt += f"\n\nThere is a file at: {file_path}. Use your tools to process it."
return self.gemini_agent.run(prompt) |