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