From 29386e6d2cbf7bf547cf8c2ad0556c7a711fdb37 Mon Sep 17 00:00:00 2001 From: geekan Date: Tue, 19 Mar 2024 19:30:31 +0800 Subject: [PATCH] update arxiv reader --- examples/di/arxiv_reader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/di/arxiv_reader.py b/examples/di/arxiv_reader.py index e376b0778..fab0e2e48 100644 --- a/examples/di/arxiv_reader.py +++ b/examples/di/arxiv_reader.py @@ -14,7 +14,7 @@ async def main(): urls = [template.format(tag=tag) for tag in tags] prompt = f"""This is a collection of arxiv urls: '{urls}' . Record each article, remove duplicates by title (they may have multiple tags), filter out papers related to -large language model / agent / llm, and visualize the word count of the titles""" +large language model / agent / llm, print top 100 and visualize the word count of the titles""" di = DataInterpreter(react_mode="react", tools=["scrape_web_playwright"]) await di.run(prompt)