From f36807b6e5710635cefb9707763b2a602f3ea9e2 Mon Sep 17 00:00:00 2001 From: paisley <8197966+su8su@users.noreply.github.com> Date: Wed, 3 Dec 2025 18:07:02 +0800 Subject: [PATCH 1/2] chore: enable search_crypto in Research agent --- python/valuecell/agents/research_agent/core.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/python/valuecell/agents/research_agent/core.py b/python/valuecell/agents/research_agent/core.py index 858f06bd9..923d9da97 100644 --- a/python/valuecell/agents/research_agent/core.py +++ b/python/valuecell/agents/research_agent/core.py @@ -17,6 +17,9 @@ fetch_event_sec_filings, fetch_periodic_sec_filings, web_search, + search_crypto_projects, + search_crypto_vcs, + search_crypto_people, ) from valuecell.agents.utils.context import build_ctx_from_dep from valuecell.core.agent import streaming @@ -32,10 +35,9 @@ def __init__(self, **kwargs): fetch_event_sec_filings, fetch_ashare_filings, web_search, - # TODO: The RootData tools will cost lots of time, so we disable them for now. - # search_crypto_projects, - # search_crypto_vcs, - # search_crypto_people, + search_crypto_projects, + search_crypto_vcs, + search_crypto_people, ] # Lazily obtain knowledge; disable search if unavailable knowledge = get_knowledge() From 8692c7a5ed4f4da8d08973f24eadcbe08d76547d Mon Sep 17 00:00:00 2001 From: paisley <8197966+su8su@users.noreply.github.com> Date: Wed, 3 Dec 2025 18:11:11 +0800 Subject: [PATCH 2/2] format --- python/valuecell/agents/research_agent/core.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/valuecell/agents/research_agent/core.py b/python/valuecell/agents/research_agent/core.py index 923d9da97..b52ea8930 100644 --- a/python/valuecell/agents/research_agent/core.py +++ b/python/valuecell/agents/research_agent/core.py @@ -12,14 +12,14 @@ KNOWLEDGE_AGENT_EXPECTED_OUTPUT, KNOWLEDGE_AGENT_INSTRUCTION, ) -from valuecell.agents.research_agent.sources import ( # search_crypto_people,; search_crypto_projects,; search_crypto_vcs, +from valuecell.agents.research_agent.sources import ( fetch_ashare_filings, fetch_event_sec_filings, fetch_periodic_sec_filings, - web_search, + search_crypto_people, search_crypto_projects, search_crypto_vcs, - search_crypto_people, + web_search, ) from valuecell.agents.utils.context import build_ctx_from_dep from valuecell.core.agent import streaming