-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
38 lines (30 loc) · 908 Bytes
/
.env.example
File metadata and controls
38 lines (30 loc) · 908 Bytes
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
# Tokenizer Configuration
# Copy this file to .env and update values as needed
# Development Configuration
TOKENIZER_DEV_MODE=false
TOKENIZER_LOG_LEVEL=info
TOKENIZER_LOG_FORMAT=json
# Performance Configuration
TOKENIZER_MAX_WORKERS=0 # 0 = number of CPUs
TOKENIZER_BUFFER_SIZE=1024
# Cache Configuration
TOKENIZER_ENABLE_CACHE=true
TOKENIZER_CACHE_SIZE=1000
TOKENIZER_CACHE_TTL=1h
# Profiling Configuration (development only)
TOKENIZER_ENABLE_PROFILING=false
TOKENIZER_PROFILE_PORT=6060
# Feature Flags
TOKENIZER_ENABLE_EXPERIMENTAL=false
TOKENIZER_ENABLE_METRICS=false
# API Configuration (if building API server)
# TOKENIZER_API_HOST=0.0.0.0
# TOKENIZER_API_PORT=8080
# TOKENIZER_API_READ_TIMEOUT=30s
# TOKENIZER_API_WRITE_TIMEOUT=30s
# Model Configuration
TOKENIZER_DEFAULT_MODEL=llama3
TOKENIZER_MODEL_PATH=./models
# Testing Configuration
TOKENIZER_TEST_VERBOSE=false
TOKENIZER_TEST_TIMEOUT=5m