Spaces:
Runtime error
Runtime error
Jan Štihec
commited on
Commit
•
6bdcc65
1
Parent(s):
84bffdd
app.py fix3
Browse files
app.py
CHANGED
@@ -13,7 +13,7 @@ if "valid_inputs_received" not in st.session_state:
|
|
13 |
st.session_state["valid_inputs_received"] = False
|
14 |
|
15 |
|
16 |
-
def get_articles(query, fetcher) -> Dict[
|
17 |
# Fetches articles using pymed. Increasing max_results results in longer loading times.
|
18 |
results = fetcher.query(query, max_results=50)
|
19 |
conclusions = []
|
|
|
13 |
st.session_state["valid_inputs_received"] = False
|
14 |
|
15 |
|
16 |
+
def get_articles(query, fetcher) -> Dict[List[str], List[str]]:
|
17 |
# Fetches articles using pymed. Increasing max_results results in longer loading times.
|
18 |
results = fetcher.query(query, max_results=50)
|
19 |
conclusions = []
|