-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
53 lines (41 loc) · 1.84 KB
/
.env.example
File metadata and controls
53 lines (41 loc) · 1.84 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
# Ananke Environment Configuration
# Copy this file to .env and fill in your values
#
# Usage:
# cp .env.example .env
# # Edit .env with your actual values
# source .env # or use direnv
###############################################################################
# REQUIRED: Modal Inference Service
###############################################################################
# Your Modal deployment endpoint
# Replace <YOUR_MODAL_WORKSPACE> with your Modal workspace name
ANANKE_MODAL_ENDPOINT=https://<YOUR_MODAL_WORKSPACE>--ananke-inference-generate-api.modal.run
# Modal API key (if your deployment requires authentication)
# ANANKE_MODAL_API_KEY=
###############################################################################
# OPTIONAL: Claude API Integration
###############################################################################
# Required only for semantic analysis features
# Get your key from: https://console.anthropic.com/settings/keys
ANTHROPIC_API_KEY=sk-ant-api03-...
###############################################################################
# OPTIONAL: Configuration Defaults
###############################################################################
# Default language for constraint extraction
# Options: typescript, python, rust, go, zig
# ANANKE_LANGUAGE=typescript
# Default model for generation
# ANANKE_MODEL=Qwen/Qwen2.5-Coder-32B-Instruct
# Modal deployment mode: dev, demo, prod
# - dev: 2 min scaledown (cost-optimized)
# - demo: 10 min scaledown (presentations)
# - prod: 5 min scaledown (balanced)
# MODAL_MODE=dev
###############################################################################
# OPTIONAL: Development
###############################################################################
# Enable debug logging
# ANANKE_DEBUG=false
# Log level: error, warn, info, debug, trace
# ANANKE_LOG_LEVEL=info