Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ SEC_PARSER_MODEL_ID=openai/gpt-4o-mini
SEC_ANALYSIS_MODEL_ID=deepseek/deepseek-chat-v3-0324
AI_HEDGE_FUND_PARSER_MODEL_ID=google/gemini-2.5-flash
RESEARCH_AGENT_MODEL_ID=google/gemini-2.5-flash
PRODUCT_MODEL_ID=anthropic/claude-haiku-4.5


# Embedding
EMBEDDER_API_KEY=
Expand All @@ -41,6 +43,10 @@ EMBEDDER_DIMENSION=1568
# Email address for SEC API requests (required by SEC)
SEC_EMAIL=

# Set your https://xueqiu.com/ token if Yfinance data fetching is unstable.
# XUEQIU_TOKEN=


# TradingAgents Configurations
# refer to ./python/third_party/TradingAgents/.env.example for details
# OpenAI API Key - Required for LLM models and online data search
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -226,4 +226,5 @@ lancedb

# Local files
logs
.knowledge
.knowledge
.txt
16 changes: 4 additions & 12 deletions python/valuecell/adapters/assets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,8 @@

# Base adapter classes
from .base import (
AdapterError,
AuthenticationError,
AdapterCapability,
BaseDataAdapter,
DataNotAvailableError,
InvalidTickerError,
RateLimitError,
TickerConverter,
)

# Internationalization support
Expand All @@ -66,6 +61,7 @@
AssetSearchResult,
AssetType,
DataSource,
Exchange,
LocalizedName,
MarketInfo,
MarketStatus,
Expand All @@ -90,18 +86,14 @@
"AssetType",
"MarketStatus",
"DataSource",
"Exchange",
"MarketInfo",
"LocalizedName",
"Watchlist",
"WatchlistItem",
# Base classes
"BaseDataAdapter",
"TickerConverter",
"AdapterError",
"RateLimitError",
"DataNotAvailableError",
"AuthenticationError",
"InvalidTickerError",
"AdapterCapability",
# Adapters
"YFinanceAdapter",
"AKShareAdapter",
Expand Down
Loading