File size: 18,894 Bytes
953a28e fb9fdbd 953a28e a1e2111 953a28e b06fdec 953a28e b06fdec 953a28e a1e2111 953a28e a1e2111 953a28e a1e2111 953a28e a1e2111 953a28e a1e2111 953a28e a1e2111 953a28e a1e2111 953a28e a1e2111 953a28e a1e2111 953a28e a1e2111 953a28e a1e2111 953a28e a1e2111 953a28e a1e2111 953a28e a1e2111 953a28e a1e2111 953a28e a1e2111 953a28e a1e2111 953a28e a1e2111 953a28e a1e2111 953a28e a1e2111 953a28e a1e2111 953a28e a1e2111 953a28e a1e2111 953a28e a1e2111 953a28e a1e2111 953a28e fb9fdbd 953a28e fb9fdbd 953a28e b06fdec 953a28e a1e2111 953a28e fb9fdbd 953a28e fb9fdbd 953a28e b06fdec 953a28e 1b94a5b b06fdec 1b94a5b 953a28e | 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 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 | import pytz
import datetime
from ddgs import DDGS
from bs4 import BeautifulSoup
import requests
import re
import io
import os
from google import genai
from google.genai import types
import config
from langchain_community.document_loaders import WikipediaLoader
from langchain_community.document_loaders import ArxivLoader
from youtube_transcript_api import YouTubeTranscriptApi
from pytube import extract
from langchain_core.tools import tool
from langfuse_tracking import track_tool_call
import pandas as pd
import speech_recognition as sr
from pydub import AudioSegment
from pypdf import PdfReader
from io import BytesIO
from markdownify import markdownify as md
# ============================================================================
# Helper Functions (must be defined before tools that use them)
# ============================================================================
def _sanitize_file_path(file_name: str) -> tuple:
"""
Sanitize file name to prevent path traversal attacks.
Args:
file_name: The file name to sanitize
Returns:
tuple: (is_valid: bool, sanitized_name_or_error: str)
"""
# Check for path traversal attempts
if '..' in file_name or file_name.startswith('/') or file_name.startswith('\\'):
return False, "Invalid file name: path traversal not allowed"
# Check for absolute paths (Windows and Unix)
if os.path.isabs(file_name):
return False, "Invalid file name: absolute paths not allowed"
# Normalize the path and ensure it doesn't escape the files directory
normalized = os.path.normpath(file_name)
if normalized.startswith('..') or os.path.isabs(normalized):
return False, "Invalid file name: path traversal detected"
return True, normalized
def _get_file_content(file_name: str, mode: str = 'binary'):
"""
Helper function to get file content from local filesystem or remote URL.
Args:
file_name: The file name (without 'files/' prefix)
mode: 'binary' for bytes, 'text' for string
Returns:
tuple: (success: bool, data: bytes/str or error_message: str)
"""
# Sanitize file name first
is_valid, result = _sanitize_file_path(file_name)
if not is_valid:
return False, result
file_name = result # Use sanitized name
file_path = f"files/{file_name}"
# Try local file first
if os.path.exists(file_path):
try:
if mode == 'binary':
with open(file_path, 'rb') as f:
return True, f.read()
else: # text mode
with open(file_path, 'r') as f:
return True, f.read()
except Exception as e:
return False, f"Error reading local file: {e}"
# If not local, try fetching from remote URL (HF Spaces)
else:
try:
base_url = os.getenv("SPACE_HOST", "agents-course-unit4-scoring.hf.space")
if not base_url.startswith("http"):
file_url = f"https://{base_url}/files/{file_name}"
else:
file_url = f"{base_url}/files/{file_name}"
print(f"Fetching file from URL: {file_url}")
response = requests.get(file_url, timeout=30)
response.raise_for_status()
if mode == 'binary':
return True, response.content
else: # text mode
return True, response.text
except Exception as e:
return False, f"Error fetching remote file: {e}"
def _get_mime_type(file_name: str) -> str:
"""Helper function to determine MIME type from file extension."""
ext = file_name.lower().split('.')[-1]
mime_types = {
'png': 'image/png',
'jpg': 'image/jpeg',
'jpeg': 'image/jpeg',
'gif': 'image/gif',
'webp': 'image/webp',
'bmp': 'image/bmp'
}
return mime_types.get(ext, 'image/png')
# ============================================================================
# Tools
# ============================================================================
@tool
@track_tool_call("add")
def add(a: float, b: float) -> str:
"""Add two numbers.
Args:
a: first int
b: second int
"""
return str(a + b)
@tool
@track_tool_call("subtract")
def subtract(a: float, b: float) -> str:
"""Subtract b from a.
Args:
a: first int
b: second int
"""
return str(a - b)
@tool
@track_tool_call("multiply")
def multiply(a: float, b: float) -> str:
"""Multiply two numbers.
Args:
a: first int
b: second int
"""
return str(a * b)
@tool
@track_tool_call("divide")
def divide(a: float, b: float) -> str:
"""Divide a by b.
Args:
a: first int
b: second int
"""
if b == 0:
return "Cannot divide by zero"
return str(a / b)
@tool
@track_tool_call("power")
def power(a: float, b: float) -> str:
"""Raise a to the power of b.
Args:
a: first int
b: second int
"""
return str(a ** b)
@tool
@track_tool_call("modulus")
def modulus(a: int, b: int) -> int:
"""Get the modulus of two numbers.
Args:
a: first int
b: second int
"""
return a % b
@tool
@track_tool_call("string_reverse")
def string_reverse(input_string: str) -> str:
"""
Reverses the input string. Useful whenever a string seems to be non-sensical or
contains a lot of gibberish. This function can be used to reverse the string
and check if it makes more sense when reversed.
Args:
input_string (str): The string to reverse.
Returns:
str: The reversed string.
"""
return input_string[::-1]
@tool
@track_tool_call("get_current_time_in_timezone")
def get_current_time_in_timezone(timezone: str) -> str:
"""A tool that fetches the current local time in a specified timezone.
Args:
timezone: A string representing a valid timezone (e.g., 'America/New_York').
"""
try:
# Create timezone object
tz = pytz.timezone(timezone)
# Get current time in that timezone
local_time = datetime.datetime.now(tz).strftime("%Y-%m-%d %H:%M:%S")
return f"The current local time in {timezone} is: {local_time}"
except Exception as e:
return f"Error fetching time for timezone '{timezone}': {str(e)}"
@tool
@track_tool_call("websearch")
def websearch(query: str) -> str:
"""This tool will search the web using DuckDuckGo.
Args:
query: The search query.
"""
try:
print(f"websearch called: {query}")
with DDGS() as ddgs:
results = ddgs.text(query, max_results=5, timelimit='y') # Limit to past year for faster results
if results:
print(f"websearch results: {len(results)}")
return "\n\n".join([f"Title: {r['title']}\nURL: {r['href']}\nSnippet: {r['body']}" for r in results])
return "No results found. Try search with a different query."
except Exception as e:
return f"Search error (try again): {str(e)}"
@tool
@track_tool_call("wiki_search")
def wiki_search(query: str) -> str:
"""Search Wikipedia for a query and return maximum 3 results.
Args:
query: The search query."""
try:
print(f"wiki_search called: {query}")
search_docs = WikipediaLoader(query=query, load_max_docs=3).load()
formatted_search_docs = "\n\n---\n\n".join(
[
f'<Document source="{doc.metadata["source"]}" page="{doc.metadata.get("page", "")}"/>\n{doc.page_content}\n</Document>'
for doc in search_docs
])
print(f"wiki_results: {len(formatted_search_docs)} characters")
return {"wiki_results": formatted_search_docs}
except Exception as e:
return f"Error performing wikipedia search: {e}. try again."
@tool
@track_tool_call("arvix_search")
def arvix_search(query: str) -> str:
"""Search Arxiv for a query and return maximum 3 result.
Args:
query: The search query."""
try:
print(f"arvix_search called: {query}")
search_docs = ArxivLoader(query=query, load_max_docs=3).load()
formatted_search_docs = "\n\n---\n\n".join(
[
f'<Document source="{doc.metadata["source"]}" page="{doc.metadata.get("page", "")}"/>\n{doc.page_content[:1000]}\n</Document>'
for doc in search_docs
])
print(f"arvix_results: {len(formatted_search_docs)} characters")
return {"arvix_results": formatted_search_docs}
except Exception as e:
return f"Error performing arxiv search: {e}. try again."
@tool
@track_tool_call("get_youtube_transcript")
def get_youtube_transcript(page_url: str) -> str:
"""Get the transcript of a YouTube video
Args:
page_url (str): YouTube URL of the video
"""
print(f"get_youtube_transcript called: {page_url}")
try:
# get video ID from URL
video_id = extract.video_id(page_url)
# get transcript
ytt_api = YouTubeTranscriptApi()
transcript = ytt_api.fetch(video_id)
# keep only text
txt = '\n'.join([s.text for s in transcript.snippets])
print(f"youtube_transcript: {len(txt)} characters")
return txt
except Exception as e:
msg = f"get_youtube_transcript failed: {e}"
print(msg)
return msg
@tool
@track_tool_call("get_webpage_content")
def get_webpage_content(page_url: str) -> str:
"""Load a web page and return it as markdown if possible
Args:
page_url (str): the URL of web page to get
Returns:
str: The content of the page(s).
"""
try:
print(f"get_web_page_content called: with url {page_url}")
r = requests.get(page_url, timeout=30) # Add 30s timeout
r.raise_for_status()
text = ""
# special case if page is a PDF file
if r.headers.get('Content-Type', '') == 'application/pdf':
pdf_file = BytesIO(r.content)
reader = PdfReader(pdf_file)
for page in reader.pages:
text += page.extract_text()
else:
soup = BeautifulSoup((r.text), 'html.parser')
if soup.body:
# convert to markdown
text = md(str(soup.body))
else:
# return the raw content
text = r.text
print(f"webpage_content: {len(text)} characters")
return text
except Exception as e:
return f"get_webpage_content failed: {e}"
@tool
@track_tool_call("read_excel_file")
def read_excel_file(file_name: str) -> str:
"""
Reads an Excel file (.xlsx) and returns its content as a Markdown table.
Use this tool to inspect data stored in Excel spreadsheets.
Args:
file_name (str): The name of the file (e.g., 'data.xlsx'). Do not include the 'files/' prefix.
Returns:
str: The file content formatted as a Markdown table.
"""
try:
print(f"read_excel_file called: with file {file_name}")
# Get file content using helper function
success, data = _get_file_content(file_name, mode='binary')
if not success:
return f"Error: Failed to read Excel file. {data}"
# Read Excel from bytes
df = pd.read_excel(BytesIO(data))
return df.to_markdown(index=False)
except Exception as e:
return f"Error: Failed to read the Excel file. Reason: {e}"
@tool
@track_tool_call("read_python_script")
def read_python_script(file_name: str) -> str:
"""
Reads the source code of a Python script.
Use this tool to examine the code logic of a .py file.
Note: This does NOT execute the script, it only reads the text.
Args:
file_name (str): The name of the file (e.g., 'script.py'). Do not include the 'files/' prefix.
Returns:
str: The raw source code of the script.
"""
try:
print(f"read_python_script called: with file {file_name}")
# Get file content using helper function
success, data = _get_file_content(file_name, mode='text')
if not success:
return f"Error: Failed to read Python script. {data}"
return data
except Exception as e:
return f"Error: Failed to read the Python script. Reason: {e}"
@tool
@track_tool_call("parse_audio_file")
def parse_audio_file(file_name: str) -> str:
"""
Transcribes audio from an MP3 file into text.
Use this tool to extract speech/text from audio files.
Args:
file_name (str): The name of the MP3 file (e.g., 'audio.mp3'). Do not include the 'files/' prefix.
Returns:
str: The transcribed text.
"""
try:
print(f"parse_audio_file called: with file {file_name}")
# Get file content using helper function
success, data = _get_file_content(file_name, mode='binary')
if not success:
return f"Error: Failed to read audio file. {data}"
# Load audio from bytes
audio = AudioSegment.from_file(io.BytesIO(data), format="mp3")
# SpeechRecognition works best with WAV data so we to WAV format in memory
wav_data = io.BytesIO()
audio.export(wav_data, format="wav")
wav_data.seek(0) # Rewind the buffer to the beginning
# Now we directly process the WAV data
recognizer = sr.Recognizer()
with sr.AudioFile(wav_data) as source:
audio_data = recognizer.record(source)
text = recognizer.recognize_google(audio_data)
return text
except sr.RequestError as e:
return f"Error: Could not request results from Google Web Speech API; {e}"
except Exception as e:
if "ffmpeg" in str(e).lower() or "avlib" in str(e).lower():
return f"Error: Failed to process audio. Reason: {e}. Ensure ffmpeg is installed and in your system's PATH."
return f"Error: Failed to parse the audio file. Reason: {e}"
@tool
@track_tool_call("analyze_youtube_video")
def analyze_youtube_video(question: str, youtube_url: str) -> str:
"""
Uses a multimodal AI model to analyze a YouTube video and answer a specific question.
Use this tool when you need visual or audio understanding of a YouTube video (e.g., "What is shown in the video?").
Args:
question (str): The question you want answered about the video content.
youtube_url (str): The full HTTPS URL of the YouTube video.
"""
try:
print(f"analyze_youtube_video called: {youtube_url} with question: {question}")
api_key = os.getenv("GOOGLE_API_KEY")
if not api_key:
return "Error: GOOGLE_API_KEY environment variable not set"
client = genai.Client(api_key=api_key)
# Add timeout and request options
response = client.models.generate_content(
model=config.GEMINI_MODEL,
contents=[types.Content(
parts=[
types.Part(file_data=types.FileData(file_uri=youtube_url)),
types.Part(text=question)
]
)
],
config=types.GenerateContentConfig(
temperature=config.GEMINI_TEMPERATURE,
max_output_tokens=config.GEMINI_MAX_TOKENS,
)
)
return response.text
except Exception as e:
error_msg = f"Error analyzing video: {str(e)[:config.QUESTION_PREVIEW_LENGTH]}"
print(error_msg)
return error_msg
@tool
@track_tool_call("analyze_image")
def analyze_image(question: str, file_name: str) -> str:
"""
Analyzes an image file and answers a specific question about it using AI vision.
Use this tool when you need to understand image content (e.g., chess positions, diagrams, photos).
Args:
question (str): The question you want answered about the image.
file_name (str): The name of the image file (e.g., 'image.png'). Do not include the 'files/' prefix.
Returns:
str: The answer to the question based on the image analysis.
"""
try:
print(f"analyze_image called: {file_name} with question: {question}")
api_key = os.getenv("GOOGLE_API_KEY")
if not api_key:
return "Error: GOOGLE_API_KEY environment variable not set"
# Get file content using helper function
success, image_data = _get_file_content(file_name, mode='binary')
if not success:
return f"Error: Failed to read image file. {image_data}"
client = genai.Client(api_key=api_key)
# Use Gemini vision model with image data
response = client.models.generate_content(
model=config.GEMINI_MODEL,
contents=[types.Content(
parts=[
types.Part(inline_data=types.Blob(
mime_type=_get_mime_type(file_name),
data=image_data
)),
types.Part(text=question)
]
)],
config=types.GenerateContentConfig(
temperature=config.GEMINI_TEMPERATURE,
max_output_tokens=config.GEMINI_MAX_TOKENS,
)
)
return response.text
except Exception as e:
error_msg = f"Error analyzing image: {str(e)[:config.QUESTION_PREVIEW_LENGTH]}"
print(error_msg)
return error_msg
# ============================================================================
# Tools List
# ============================================================================
def get_custom_tools_list() -> list:
"""Get list of all custom tools for the agent.
Returns:
list: List of tool functions
"""
tools = [
add,
subtract,
multiply,
divide,
power,
modulus,
string_reverse,
get_current_time_in_timezone,
websearch,
wiki_search,
arvix_search,
get_youtube_transcript,
get_webpage_content,
read_python_script,
read_excel_file,
parse_audio_file,
analyze_youtube_video,
analyze_image
]
return tools
|