Spaces:
Running
Running
File size: 5,142 Bytes
9b5b26a b9e33b1 9b5b26a c19d193 6aae614 b9e33b1 41e9eb9 8fe992b 9b5b26a c1ef000 8d4ca99 b9e33b1 9b5b26a 8c01ffb 6aae614 c199077 13d500a 8c01ffb 9b5b26a 8c01ffb 861422e 9b5b26a 8c01ffb 8fe992b e2713ca 8c01ffb 861422e 8fe992b 9b5b26a 8c01ffb |
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 |
from smolagents import CodeAgent,DuckDuckGoSearchTool, HfApiModel,load_tool,tool
from bs4 import BeautifulSoup
import datetime
import requests
import pytz
import yaml
from tools.final_answer import FinalAnswerTool
import re
from typing import Optional
from Gradio_UI import GradioUI
@tool
def get_pets_available_for_adoption(animal_type: Optional[str] = None, breed: Optional[str] = None) -> str:
"""A tool that finds the specified animal and breed from the Brampton Animal Shelter website.
Args:
animal_type: The type of animal to search for (e.g., "dog", "cat", "bird", "other"). If None, returns all types.
breed: The specific breed or species name to filter by. If None, returns all breeds.
"""
base_url = "https://www.brampton.ca/EN/residents/Animal-Services/Pages/Adoption.aspx"
matching_animals = []
processed_ids = {}
session = requests.Session()
response = session.get(base_url)
if response.status_code != 200:
return f"Failed to access the website. Status code: {response.status_code}"
# Only process the main page, no pagination
process_page(response.text, matching_animals, processed_ids, animal_type, breed)
animal_sentences = []
for animal in matching_animals:
if (animal.get("name") in [None, "", "Unknown"] or
animal.get("age") in [None, "", "unknown age"] or
animal.get("sex") in [None, "", "unknown gender"] or
animal.get("breed") in [None, "", "unknown breed"] or
animal.get("type") in [None, "", "animal"]):
continue
name = animal.get("name", "Unknown").title()
age = animal.get("age", "unknown age").lower().strip()
sex = animal.get("sex", "unknown gender").lower()
breed_name = animal.get("breed", "unknown breed").title()
animal_type_value = animal.get("type", "animal").lower()
sentence = f"A {age} old {sex} {breed_name} named {name}, type: {animal_type_value}"
animal_sentences.append(sentence)
if animal_sentences:
return "\n".join(animal_sentences)
else:
return "No matching animals found."
def process_page(html_content, matching_animals, processed_ids, animal_type=None, breed=None):
"""Process a single page of animal listings"""
soup = BeautifulSoup(html_content, 'html.parser')
animal_cards = soup.find_all("div", class_="dvanimalitem")
for card in animal_cards:
animal_info = {}
name_element = card.find("span", class_="animalname")
if name_element:
animal_info["name"] = name_element.text.strip()
for field in ["id", "type", "sex", "breed", "age", "size", "color", "location"]:
field_element = card.find("span", id=lambda x: x and x.startswith(f"sp{field}"))
if field_element:
animal_info[field] = field_element.text.strip()
if animal_info.get("id") in processed_ids:
continue
if "id" in animal_info:
processed_ids[animal_info["id"]] = True
# Matching logic
type_match = True
breed_match = True
if animal_type:
animal_type_lower = animal_type.lower()
current_type_lower = animal_info.get("type", "").lower()
if animal_type_lower == "other":
type_match = current_type_lower not in ["dog", "cat", "bird"]
else:
type_match = animal_type_lower in current_type_lower
if breed:
breed_match = breed.lower() in animal_info.get("breed", "").lower()
if type_match and breed_match:
matching_animals.append(animal_info)
@tool
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)}"
final_answer = FinalAnswerTool()
model = HfApiModel(
max_tokens=2096,
temperature=0.5,
model_id='Qwen/Qwen2.5-Coder-32B-Instruct',
custom_role_conversions=None,
)
# Import tool from Hub
image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)
with open("prompts.yaml", 'r') as stream:
prompt_templates = yaml.safe_load(stream)
agent = CodeAgent(
model=model,
tools=[final_answer, get_pets_available_for_adoption, get_current_time_in_timezone], ## add your tools here (don't remove final answer)
max_steps=6,
verbosity_level=1,
grammar=None,
planning_interval=None,
name=None,
description=None,
prompt_templates=prompt_templates
)
GradioUI(agent).launch() |