pdx97 commited on
Commit
0bb6d8b
·
verified ·
1 Parent(s): 21a2c38

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -4,7 +4,6 @@ import yaml
4
  import gradio as gr
5
  from smolagents import CodeAgent, HfApiModel, tool
6
 
7
-
8
  @tool
9
  def fetch_latest_arxiv_papers(keywords: list, num_results: int = 3) -> list:
10
  """
@@ -25,7 +24,7 @@ def fetch_latest_arxiv_papers(keywords: list, num_results: int = 3) -> list:
25
  try:
26
  print(f"DEBUG: Searching arXiv papers with keywords: {keywords}") # Debug input
27
 
28
- #Properly format query with +AND+ for multiple keywords
29
  query = "+AND+".join([f"all:{kw}" for kw in keywords])
30
  query_encoded = urllib.parse.quote(query) # Encode spaces and special characters
31
 
@@ -51,6 +50,7 @@ def fetch_latest_arxiv_papers(keywords: list, num_results: int = 3) -> list:
51
  print(f"ERROR: {str(e)}") # Debug errors
52
  return [{"error": f"Error fetching research papers: {str(e)}"}]
53
 
 
54
  model = HfApiModel(
55
  max_tokens=2096,
56
  temperature=0.5,
@@ -58,7 +58,7 @@ model = HfApiModel(
58
  custom_role_conversions=None,
59
  )
60
 
61
- # Load prompt templates
62
  with open("prompts.yaml", 'r') as stream:
63
  prompt_templates = yaml.safe_load(stream)
64
 
@@ -75,7 +75,7 @@ agent = CodeAgent(
75
  prompt_templates=prompt_templates
76
  )
77
 
78
- # Define Gradio Search Function
79
  def search_papers(user_input):
80
  keywords = [kw.strip() for kw in user_input.split(",") if kw.strip()] # Ensure valid keywords
81
  print(f"DEBUG: Received input keywords - {keywords}") # Debug user input
@@ -96,7 +96,7 @@ def search_papers(user_input):
96
  print("DEBUG: No results found.")
97
  return "No results found. Try different keywords."
98
 
99
- # Create Gradio UI
100
  with gr.Blocks() as demo:
101
  gr.Markdown("# arXiv Research Paper Fetcher")
102
  keyword_input = gr.Textbox(label="Enter keywords (comma-separated)", placeholder="e.g., deep learning, reinforcement learning")
@@ -107,5 +107,5 @@ with gr.Blocks() as demo:
107
 
108
  print("DEBUG: Gradio UI is running. Waiting for user input...")
109
 
110
- # Launch Gradio App
111
  demo.launch()
 
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
  """
 
24
  try:
25
  print(f"DEBUG: Searching arXiv papers with keywords: {keywords}") # Debug input
26
 
27
+ #Properly format query with +AND+ for multiple keywords
28
  query = "+AND+".join([f"all:{kw}" for kw in keywords])
29
  query_encoded = urllib.parse.quote(query) # Encode spaces and special characters
30
 
 
50
  print(f"ERROR: {str(e)}") # Debug errors
51
  return [{"error": f"Error fetching research papers: {str(e)}"}]
52
 
53
+ # ✅ Define the AI Model
54
  model = HfApiModel(
55
  max_tokens=2096,
56
  temperature=0.5,
 
58
  custom_role_conversions=None,
59
  )
60
 
61
+ # Load prompt templates
62
  with open("prompts.yaml", 'r') as stream:
63
  prompt_templates = yaml.safe_load(stream)
64
 
 
75
  prompt_templates=prompt_templates
76
  )
77
 
78
+ #Define Gradio Search Function
79
  def search_papers(user_input):
80
  keywords = [kw.strip() for kw in user_input.split(",") if kw.strip()] # Ensure valid keywords
81
  print(f"DEBUG: Received input keywords - {keywords}") # Debug user input
 
96
  print("DEBUG: No results found.")
97
  return "No results found. Try different keywords."
98
 
99
+
100
  with gr.Blocks() as demo:
101
  gr.Markdown("# arXiv Research Paper Fetcher")
102
  keyword_input = gr.Textbox(label="Enter keywords (comma-separated)", placeholder="e.g., deep learning, reinforcement learning")
 
107
 
108
  print("DEBUG: Gradio UI is running. Waiting for user input...")
109
 
110
+
111
  demo.launch()