-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
54 lines (42 loc) · 1.93 KB
/
.env.example
File metadata and controls
54 lines (42 loc) · 1.93 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
# =============================================================================
# Entity Tracker Environment Variables
# =============================================================================
# Copy this file to .env and fill in your actual API keys
# =============================================================================
# OpenAI API Key (Required for LLM functionality)
OPENAI_API_KEY=your_openai_api_key_here
# Optional: Tavily API Key (For web search functionality)
# Get your free API key at: https://tavily.com
TAVILY_API_KEY=your_tavily_api_key_here
# =============================================================================
# Optional: Additional LLM Provider Keys
# =============================================================================
# Google Vertex AI (for Gemini models)
# GOOGLE_APPLICATION_CREDENTIALS=/path/to/credentials.json
# GOOGLE_CLOUD_PROJECT=your_project_id
# Anthropic (for Claude models)
# ANTHROPIC_API_KEY=your_anthropic_api_key_here
# Azure OpenAI
# AZURE_OPENAI_API_KEY=your_azure_key_here
# AZURE_OPENAI_ENDPOINT=your_azure_endpoint_here
# =============================================================================
# LangSmith Configuration (Optional - for tracing and monitoring)
# =============================================================================
# LANGCHAIN_TRACING_V2=true
# LANGCHAIN_API_KEY=your_langsmith_api_key_here
# LANGCHAIN_PROJECT=entity-tracker
# =============================================================================
# Entity Tracker Configuration
# =============================================================================
# Default LLM Models (can be overridden in code)
# LLM_QUERY_CREATOR=openai/gpt-4o-mini
# LLM_REVIEWER=openai/gpt-4o
# LLM_WRITER=openai/gpt-4o
# Search Configuration
# SEARCH_WEB_ENABLED=true
# SEARCH_EMAIL_ENABLED=false
# SEARCH_YOUTUBE_ENABLED=false
# SEARCH_SPEECHES_ENABLED=false
# SEARCH_SCRAPER_ENABLED=false
# Debug Mode
# DEBUG=false