Spaces:
Running
on
Zero
Running
on
Zero
Commit
·
7c6b948
1
Parent(s):
c75ee04
Enhance docstring in format_search_results_json function to provide clearer input guidance for users
Browse files
app.py
CHANGED
@@ -302,7 +302,8 @@ def find_synergistic_papers(abstract: str, limit=25) -> list[dict]:
|
|
302 |
|
303 |
|
304 |
def format_search_results_json(abstract: str) -> str:
|
305 |
-
"""Finds papers with Swanson-style bridges.
|
|
|
306 |
|
307 |
Args:
|
308 |
abstract (str): The abstract of the paper to find connections for, or a description of the research question.
|
|
|
302 |
|
303 |
|
304 |
def format_search_results_json(abstract: str) -> str:
|
305 |
+
"""Finds papers with Swanson-style bridges. Input your abstract or abstract-style description of your research
|
306 |
+
question, and the system will return a list of papers with Swanson-style bridges.
|
307 |
|
308 |
Args:
|
309 |
abstract (str): The abstract of the paper to find connections for, or a description of the research question.
|