Spaces:
Sleeping
Sleeping
File size: 7,031 Bytes
9b5b26a c19d193 6aae614 8fe992b 9b5b26a 7038772 9b5b26a 7038772 9b5b26a 7038772 9b5b26a 7038772 9b5b26a 8c01ffb 6aae614 ae7a494 e121372 bf6d34c 29ec968 fe328e0 13d500a 8c01ffb 9b5b26a 8c01ffb 861422e 9b5b26a 8c01ffb 8fe992b 7038772 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 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 |
from smolagents import CodeAgent,DuckDuckGoSearchTool, HfApiModel,load_tool,tool
import datetime
import requests
import pytz
import yaml
from tools.final_answer import FinalAnswerTool
from Gradio_UI import GradioUI
@tool
def get_top_daily_paper() -> str:
"""
Retrieves the current top upvoted paper from Hugging Face Daily Papers.
Returns:
str: The title and URL of the paper.
"""
try:
import requests
from bs4 import BeautifulSoup
url = "https://huggingface.co/papers"
resp = requests.get(url, timeout=10)
resp.raise_for_status()
soup = BeautifulSoup(resp.content, "html.parser")
# Find the first article (top paper by upvotes)
paper = soup.select_one("article")
if not paper:
return "🔍 Error: No papers found on the page"
# Find the title and link within the h3 > a structure
title_element = paper.select_one("h3 a")
if not title_element:
return "🔍 Error: Could not find paper title"
title = title_element.get_text(strip=True)
link = title_element.get("href")
if not link:
return "🔍 Error: Could not find paper link"
full_url = f"https://huggingface.co{link}"
return f"Top Daily Paper: {title} — {full_url}"
except Exception as e:
return f"🔍 Error fetching top paper: {str(e)}"
@tool
def get_paper_abstract(paper_url: str) -> str:
"""
Retrieves the abstract from a Hugging Face paper page.
Args:
paper_url: The URL of the paper page
Returns:
str: The paper abstract including AI summary if available
"""
try:
import requests
from bs4 import BeautifulSoup
resp = requests.get(paper_url, timeout=10)
resp.raise_for_status()
soup = BeautifulSoup(resp.content, "html.parser")
# Find the abstract section
abstract_section = soup.find("h2", string="Abstract")
if not abstract_section:
return "🔍 Error: Abstract section not found"
# Get the parent container of the abstract
abstract_container = abstract_section.find_next_sibling("div")
if not abstract_container:
return "🔍 Error: Abstract content not found"
result_parts = []
# Look for AI-generated summary (blue box)
ai_summary = abstract_container.select_one(".bg-blue-500\\/6 p")
if ai_summary:
summary_text = ai_summary.get_text(strip=True)
result_parts.append(f"🤖 AI Summary: {summary_text}")
# Get the main abstract text
main_abstract = abstract_container.select_one("p.text-gray-600")
if main_abstract:
# Clean up the text by removing link artifacts and extra spaces
abstract_text = ""
for element in main_abstract.descendants:
if element.name is None: # Text node
abstract_text += element.strip() + " "
abstract_text = " ".join(abstract_text.split()) # Normalize whitespace
result_parts.append(f"📄 Abstract: {abstract_text}")
if not result_parts:
return "🔍 Error: No abstract content found"
return "\n\n".join(result_parts)
except Exception as e:
return f"🔍 Error fetching abstract: {str(e)}"
@tool
def summarize_text(text: str, max_sentences: int = 3, model_name: str = "google/pegasus-cnn_dailymail") -> str:
"""
Summarize a body of text using a Hugging Face Transformers pipeline.
Args:
text: The text to be summarized.
max_sentences: Approximate upper limit for the number of sentences in the output.
model_name: The Hugging Face model to use for summarization (default is a CNN/DailyMail–fine‑tuned Pegasus).
Returns:
A concise summary string, or an error message.
"""
try:
from transformers import pipeline
# Load summarization pipeline once (could be optimized by caching)
summarizer = pipeline("summarization", model=model_name)
# Heuristically chunk long text into manageable parts for the model
max_chunk = 1024 # tokens; varies by model
# Naive chunking, splitting on sentences or whitespace:
chunks = [text[i:i + max_chunk] for i in range(0, len(text), max_chunk)]
# Summarize each chunk
summaries = []
for chunk in chunks:
out = summarizer(chunk,
max_length=max_sentences * 20,
min_length=max_sentences * 10,
do_sample=False)
summaries.append(out[0]['summary_text'])
# Combine chunk-level summaries, optionally resummarize
combined = " ".join(summaries)
if len(chunks) > 1:
final = summarizer(combined,
max_length=max_sentences * 20,
min_length=max_sentences * 10,
do_sample=False)[0]['summary_text']
return final
else:
return summaries[0]
except Exception as e:
return f"Error during summarization: {e}"
@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()
# If the agent does not answer, the model is overloaded, please use another model or the following Hugging Face Endpoint that also contains qwen2.5 coder:
# model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud'
model = HfApiModel(
max_tokens=2096,
temperature=0.5,
model_id='Qwen/Qwen2.5-Coder-32B-Instruct',# it is possible that this model may be overloaded
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_current_time_in_timezone,get_top_daily_paper,get_paper_abstract,summarize_text], ## 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() |