-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
53 lines (43 loc) · 1.74 KB
/
.env.example
File metadata and controls
53 lines (43 loc) · 1.74 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
# ============================================================
# WEAVIATE CONFIGURATION
# ============================================================
## Local Weaviate Instance (using docker-compose.yaml)
WEAVIATE_IS_LOCAL=True
LOCAL_WEAVIATE_PORT=8080
LOCAL_WEAVIATE_GRPC_PORT=50051
# Choose ONE of the following connection modes:
# Option 1: Local Weaviate Instance (Docker)
WEAVIATE_URL=http://localhost:8080
# WEAVIATE_API_KEY= # Optional: if authentication is enabled
# Option 2: Weaviate Cloud (WCD)
# WCD_URL=https://your-cluster.weaviate.network
# WCD_API_KEY=your-wcd-api-key
# ============================================================
# EMBEDDINGS
# ============================================================
# VoyageAI for vector embeddings (required for Weaviate MCP)
VOYAGEAI_API_KEY=pa-your-voyageai-api-key-here
# ============================================================
# LLM PROVIDER API KEYS
# ============================================================
## Anthropic (required for AI agent in interactive shell)
ANTHROPIC_API_KEY=sk-ant-your-anthropic-api-key-here
# ============================================
# AI SDK / ANTHROPIC (Natural Language Agent)
# ============================================
# Claude model selection (default: claude-haiku-4-5)
# Available models:
# - claude-opus-4: Most capable
# - claude-sonnet-4-5: Balanced speed/quality
# - claude-sonnet-4: Medium reasoning
# - claude-haiku-4-5: Fastest/cheapest (default)
AI_MODEL=claude-haiku-4-5
# ============================================
# DEVELOPMENT OPTIONS (Optional)
# ============================================
# Enable strict MCP schema validation
# MCP_STRICT=1
# Disable colored output
# NO_COLOR=1
# Disable glyphs/emojis in output
# NO_GLYPHS=1