-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
32 lines (25 loc) · 833 Bytes
/
Copy path.env.example
File metadata and controls
32 lines (25 loc) · 833 Bytes
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
# API Keys for Agentic SpliceAI
# Copy this file to .env and fill in your actual API keys
# OpenAI API Key (Required)
# Get from: https://platform.openai.com/api-keys
OPENAI_API_KEY=sk-your-api-key-here
# Tavily API Key (Optional - for Nexus web search)
# Get from: https://tavily.com/
TAVILY_API_KEY=your-tavily-key-here
# Anthropic API Key (Optional - for Claude models)
# Get from: https://console.anthropic.com/
ANTHROPIC_API_KEY=sk-ant-your-key-here
# Splice Agent Configuration
SPLICE_AGENT_PORT=8004
SPLICE_AGENT_HOST=0.0.0.0
SPLICE_AGENT_DATA_DIR=data/
SPLICE_AGENT_OUTPUT_DIR=output/splice_charts
# Nexus Research Agent Configuration
NEXUS_OUTPUT_DIR=src/nexus/output/
NEXUS_KNOWLEDGE_DIR=src/nexus/knowledge/
# Model Preferences
DEFAULT_MODEL=gpt-4o-mini
REFLECTION_MODEL=gpt-4o
# Logging
LOG_LEVEL=INFO
DEBUG=False