Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -2,25 +2,23 @@ import feedparser
|
|
2 |
import urllib.parse
|
3 |
import yaml
|
4 |
import gradio as gr
|
5 |
-
from typing import List, Dict
|
6 |
from smolagents import CodeAgent, HfApiModel, tool
|
7 |
|
8 |
@tool
|
9 |
-
def fetch_latest_arxiv_papers(keywords:
|
10 |
-
"""
|
11 |
-
Fetches the latest research papers from arXiv.
|
12 |
|
13 |
Args:
|
14 |
-
keywords
|
15 |
-
num_results
|
16 |
|
17 |
Returns:
|
18 |
-
|
19 |
-
- "title"
|
20 |
-
- "authors"
|
21 |
-
- "year"
|
22 |
-
- "abstract"
|
23 |
-
- "link"
|
24 |
"""
|
25 |
try:
|
26 |
print(f"DEBUG: Searching arXiv papers with keywords: {keywords}") # Debug input
|
@@ -49,7 +47,7 @@ def fetch_latest_arxiv_papers(keywords: List[str], num_results: int = 3) -> List
|
|
49 |
|
50 |
except Exception as e:
|
51 |
print(f"ERROR: {str(e)}") # Debug errors
|
52 |
-
return [
|
53 |
|
54 |
# ✅ Define the AI Model
|
55 |
model = HfApiModel(
|
|
|
2 |
import urllib.parse
|
3 |
import yaml
|
4 |
import gradio as gr
|
|
|
5 |
from smolagents import CodeAgent, HfApiModel, tool
|
6 |
|
7 |
@tool
|
8 |
+
def fetch_latest_arxiv_papers(keywords: list, num_results: int = 3) -> list:
|
9 |
+
"""Fetches the latest research papers from arXiv based on provided keywords.
|
|
|
10 |
|
11 |
Args:
|
12 |
+
keywords: A list of keywords to search for relevant papers.
|
13 |
+
num_results: The number of papers to fetch (default is 3).
|
14 |
|
15 |
Returns:
|
16 |
+
A list of dictionaries containing:
|
17 |
+
- "title": The title of the research paper.
|
18 |
+
- "authors": The authors of the paper.
|
19 |
+
- "year": The publication year.
|
20 |
+
- "abstract": A summary of the research paper.
|
21 |
+
- "link": A direct link to the paper on arXiv.
|
22 |
"""
|
23 |
try:
|
24 |
print(f"DEBUG: Searching arXiv papers with keywords: {keywords}") # Debug input
|
|
|
47 |
|
48 |
except Exception as e:
|
49 |
print(f"ERROR: {str(e)}") # Debug errors
|
50 |
+
return [f"Error fetching research papers: {str(e)}"]
|
51 |
|
52 |
# ✅ Define the AI Model
|
53 |
model = HfApiModel(
|