Skip to content

Commit

Permalink
Update app.py
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-alexiuk authored Jul 18, 2023
1 parent 735d366 commit 97c4924
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async def init():
content="Please enter a topic to begin!", timeout=15
).send()

# Obtain the top 30 results from Arxiv for the query
# Obtain the top 3 results from Arxiv for the query
search = arxiv.Search(
query=arxiv_query["content"],
max_results=3,
Expand Down Expand Up @@ -100,4 +100,4 @@ async def process_response(res):
cl.Text(name=title, content=text_for_source, display="inline")
)

await cl.Message(content=answer, elements=source_elements).send()
await cl.Message(content=answer, elements=source_elements).send()

0 comments on commit 97c4924

Please sign in to comment.