pdx97 commited on
Commit
74e8501
·
verified ·
1 Parent(s): 7233de1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -13
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: List[str], num_results: int = 3) -> List[Dict[str, str]]:
10
- """
11
- Fetches the latest research papers from arXiv.
12
 
13
  Args:
14
- keywords (List[str]): A list of search keywords to filter relevant papers.
15
- num_results (int): The maximum number of research papers to fetch. Default is 3.
16
 
17
  Returns:
18
- List[Dict[str, str]]: A list of dictionaries where each dictionary contains:
19
- - "title" (str): The title of the research paper.
20
- - "authors" (str): The authors of the paper.
21
- - "year" (str): The publication year.
22
- - "abstract" (str): A summary of the research paper.
23
- - "link" (str): A direct link to the paper on arXiv.
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 [{"error": f"Error fetching research papers: {str(e)}"}]
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(