forked from virattt/dexter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
53 lines (45 loc) · 2.19 KB
/
Copy pathenv.example
File metadata and controls
53 lines (45 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# LLM API Keys
OPENAI_API_KEY=your-openai-api-key
ANTHROPIC_API_KEY=your-anthropic-api-key
GOOGLE_API_KEY=your-google-api-key
XAI_API_KEY=your-xai-api-key
OPENROUTER_API_KEY=your-openrouter-api-key
MOONSHOT_API_KEY=your-moonshot-api-key
DEEPSEEK_API_KEY=your-deepseek-api-key
# NVIDIA build platform (free tier, OpenAI-compatible). Get a key at build.nvidia.com.
# Optional override: NVIDIA_BASE_URL (defaults to https://integrate.api.nvidia.com/v1)
NVIDIA_API_KEY=your-nvidia-api-key
# Ollama (Local LLM)
OLLAMA_BASE_URL=http://127.0.0.1:11434
# Persistent memory embeddings reuse existing model API keys.
# Priority: OpenAI (OPENAI_API_KEY) -> Gemini (GOOGLE_API_KEY) -> Ollama (OLLAMA_BASE_URL)
# No additional memory-specific API keys required.
# Stock Market Data
# DATA_BACKEND=edgar uses the FREE SEC EDGAR backend for fundamentals (income statements
# today; balance/cash-flow rolling out) and falls back to Financial Datasets otherwise.
# EDGAR requires a descriptive User-Agent per SEC policy.
DATA_BACKEND=edgar
EDGAR_USER_AGENT=YourApp your@email.com
# Financial Datasets is the default/fallback (paid). Optional when DATA_BACKEND=edgar.
FINANCIAL_DATASETS_API_KEY=your-financial-datasets-api-key
# Web Search API Keys (Exa → Perplexity → Tavily → LangSearch → Brave)
EXASEARCH_API_KEY=your-exa-api-key
PERPLEXITY_API_KEY=your-perplexity-api-key
TAVILY_API_KEY=your-tavily-api-key
LANGSEARCH_API_KEY=your-langsearch-api-key
BRAVE_SEARCH_API_KEY=your-brave-search-api-key
# X/Twitter API (enables x_search tool for public sentiment research)
X_BEARER_TOKEN=your-X-bearer-token
# Kronos price-forecasting (enables the kronos_predict tool when the local Kronos
# project is present). Defaults to /Users/Ambartsum/code/Kronos and `python3`.
KRONOS_DIR=/Users/Ambartsum/code/Kronos
KRONOS_PYTHON=python3
# ai-hedge-fund quant signals (enables quant_signals: Mohanram G-Score, Beneish
# M-Score, quality factors) when the project is present. Defaults below.
AHF_DIR=/Users/Ambartsum/code/ai-hedge-fund
AHF_PYTHON=/Users/Ambartsum/code/ai-hedge-fund/.venv/bin/python
# LangSmith
LANGSMITH_API_KEY=your-langsmith-api-key
LANGSMITH_ENDPOINT=https://api.smith.langchain.com
LANGSMITH_PROJECT=dexter
LANGSMITH_TRACING=false