-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.env.example
More file actions
114 lines (88 loc) · 3.12 KB
/
.env.example
File metadata and controls
114 lines (88 loc) · 3.12 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# Mindwave Configuration
# ============================================
# LLM Configuration
# ============================================
# OpenAI Configuration
OPENAI_API_KEY=sk-your-openai-api-key-here
OPENAI_MODEL=gpt-4-turbo
OPENAI_MAX_TOKENS=4096
OPENAI_TEMPERATURE=0.7
# Mistral Configuration
MISTRAL_API_KEY=your-mistral-api-key-here
MINDWAVE_MISTRAL_API_KEY=your-mistral-api-key-here
MISTRAL_MODEL=mistral-large-latest
# Anthropic Configuration
MINDWAVE_ANTHROPIC_API_KEY=your-anthropic-api-key-here
MINDWAVE_ANTHROPIC_MODEL=claude-sonnet-4-5-20250929
MINDWAVE_ANTHROPIC_MAX_TOKENS=4096
MINDWAVE_ANTHROPIC_TEMPERATURE=1.0
# Optional: System message
# MINDWAVE_ANTHROPIC_SYSTEM_MESSAGE=
# Default LLM Driver
MINDWAVE_LLM_DRIVER=openai
# ============================================
# OpenTelemetry Tracing
# ============================================
# Enable/Disable Tracing
MINDWAVE_TRACING_ENABLED=true
# Service Name (identifies your app in traces)
MINDWAVE_TRACING_SERVICE_NAME=mindwave-app
# Sampling Rate (0.0 to 1.0, where 1.0 = 100%)
# Use lower rates in production to reduce overhead
MINDWAVE_TRACING_SAMPLE_RATE=1.0
# Capture LLM Messages (prompts and responses)
# WARNING: May contain PII - set to false in production
MINDWAVE_CAPTURE_MESSAGES=false
# Database Storage
MINDWAVE_TRACING_DATABASE_ENABLED=true
# OTLP Exporter Configuration (optional)
# Uncomment to send traces to external observability platforms
# MINDWAVE_OTLP_ENABLED=true
# MINDWAVE_OTLP_ENDPOINT=http://localhost:4318
# MINDWAVE_OTLP_PROTOCOL=http
# MINDWAVE_OTLP_HEADERS=
# Example: Jaeger
# MINDWAVE_OTLP_ENDPOINT=http://localhost:4318
# Example: Honeycomb
# MINDWAVE_OTLP_ENDPOINT=https://api.honeycomb.io:443
# MINDWAVE_OTLP_HEADERS='{"x-honeycomb-team":"YOUR_API_KEY","x-honeycomb-dataset":"mindwave"}'
# Example: Grafana Tempo
# MINDWAVE_OTLP_ENDPOINT=http://tempo:4318
# MINDWAVE_OTLP_HEADERS='{"X-Scope-OrgID":"tenant1"}'
# ============================================
# Embeddings Configuration
# ============================================
MINDWAVE_EMBEDDINGS_DRIVER=openai
# ============================================
# Vector Store Configuration
# ============================================
# Embedding Dimensions
# Common values: 1536 (OpenAI ada-002, 3-small), 3072 (OpenAI 3-large)
# Must match your embedding model's output dimension
# Pinecone
PINECONE_API_KEY=
PINECONE_ENVIRONMENT=
MINDWAVE_PINECONE_DIMENSIONS=1536
# Qdrant
QDRANT_HOST=localhost
QDRANT_PORT=6333
MINDWAVE_QDRANT_DIMENSIONS=1536
# Weaviate
WEAVIATE_HOST=localhost
WEAVIATE_PORT=8080
MINDWAVE_WEAVIATE_DIMENSIONS=1536
# ============================================
# TNTSearch Configuration (Coming Soon)
# ============================================
MINDWAVE_TNTSEARCH_ENABLED=true
MINDWAVE_TNTSEARCH_STORAGE_PATH=storage/app/tntsearch
# ============================================
# Testing Configuration
# ============================================
# For running integration tests
# OPENAI_API_KEY=sk-test-key
# MINDWAVE_OPENAI_API_KEY=sk-test-key
# MISTRAL_API_KEY=test-key
# MINDWAVE_MISTRAL_API_KEY=test-key
# ANTHROPIC_API_KEY=test-key
# MINDWAVE_ANTHROPIC_API_KEY=test-key