-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
59 lines (49 loc) · 1.74 KB
/
.env.example
File metadata and controls
59 lines (49 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
54
55
56
57
58
59
# Optional local overrides for ChatCrystal
#
# Primary runtime config lives in config.json under the active data directory.
# Default active data directory is ~/.chatcrystal/data across CLI, MCP, dev, npm, and Electron.
# Keep this file only if you want development-time overrides.
# Server
PORT=3721
# DATA_DIR=./data
# Data source overrides
# CLAUDE_PROJECTS_DIR=~/.claude/projects
# CODEX_SESSIONS_DIR=~/.codex/sessions
# CURSOR_DATA_DIR= # Auto-detected per platform; override if needed
# TRAE_DATA_DIR= # Auto-detected per platform; override if needed
# COPILOT_DATA_DIR= # Auto-detected per platform; override if needed
# LLM Provider override for summarization
# Supported: ollama, openai, anthropic, google, azure, custom
# LLM_PROVIDER=ollama
# LLM_BASE_URL=http://localhost:11434
# LLM_API_KEY=
# LLM_MODEL=qwen2.5:7b
# Embedding Provider override for semantic search
# Supported: ollama, openai, google, azure, custom
# EMBEDDING_PROVIDER=ollama
# EMBEDDING_BASE_URL=http://localhost:11434
# EMBEDDING_API_KEY=
# EMBEDDING_MODEL=nomic-embed-text
# --- Provider Examples ---
# OpenAI
# LLM_PROVIDER=openai
# LLM_API_KEY=sk-...
# LLM_MODEL=gpt-4o-mini
# Anthropic (native, no baseURL needed)
# LLM_PROVIDER=anthropic
# LLM_API_KEY=sk-ant-...
# LLM_MODEL=claude-sonnet-4-20250514
# Google AI (native, no baseURL needed)
# LLM_PROVIDER=google
# LLM_API_KEY=AIza...
# LLM_MODEL=gemini-2.0-flash
# Azure OpenAI
# LLM_PROVIDER=azure
# LLM_BASE_URL=https://your-resource.openai.azure.com
# LLM_API_KEY=...
# LLM_MODEL=your-deployment-name
# Custom (any OpenAI-compatible API: Poe, OpenRouter, LM Studio, vLLM, etc.)
# LLM_PROVIDER=custom
# LLM_BASE_URL=https://openrouter.ai/api/v1
# LLM_API_KEY=...
# LLM_MODEL=anthropic/claude-3.5-haiku