Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions python/valuecell/agents/research_agent/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,13 @@
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,
search_crypto_people,
search_crypto_projects,
search_crypto_vcs,
web_search,
)
from valuecell.agents.utils.context import build_ctx_from_dep
Expand All @@ -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()
Expand Down