-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
78 lines (56 loc) · 2.47 KB
/
.env.example
File metadata and controls
78 lines (56 loc) · 2.47 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
# SkyPlan Environment Configuration
# Copy this file to .env and fill in your values
# ============================================================================
# Inference Credentials and Model Configuration
# ============================================================================
# The inference runner automatically loads .env and prefers HF_TOKEN or API_KEY.
# Leave secret values blank in the example file and set them only in your local .env.
HF_TOKEN=
API_KEY=
# Updated API Base URL and Model Name for inference
API_BASE_URL=https://integrate.api.nvidia.com/v1
MODEL_NAME=meta/llama-3.1-405b-instruct
IMAGE_NAME=skyplan-env
# Increased timeout to handle WebSocket delays
SKYPLAN_LLM_TIMEOUT=30
# ============================================================================
# Reward System Configuration
# ============================================================================
# Maximum quality bonus per document (default: 0.3)
SKYPLAN_QUALITY_BONUS_MAX=0.3
# Maximum teamwork bonus per step (default: 0.2)
SKYPLAN_TEAMWORK_BONUS_MAX=0.2
# Completion bonus for finishing all documents (default: 0.3)
SKYPLAN_COMPLETION_BONUS=0.3
# Cache TTL in hours (default: 24)
SKYPLAN_CACHE_TTL_HOURS=24
# Workflow steps (default: 6)
SKYPLAN_WORKFLOW_STEPS=6
# ============================================================================
# Inference Configuration
# ============================================================================
# Task to run (easy_user_authentication, medium_chat_app, hard_saas_platform, all)
SKYPLAN_TASK=all
# LLM temperature for inference (default: 0.0)
SKYPLAN_TEMPERATURE=0.0
# Maximum tokens per LLM call (default: 2000)
SKYPLAN_MAX_TOKENS=2000
# Added missing inference configuration
SKYPLAN_MAX_ACTION_CHARS=16000
SKYPLAN_STEP_RECOVERY_ATTEMPTS=1
# ============================================================================
# Server Configuration
# ============================================================================
# Server host (default: 0.0.0.0)
SKYPLAN_HOST=0.0.0.0
# Server port (default: 8000)
SKYPLAN_PORT=8000
# Maximum concurrent environments (default: 1)
SKYPLAN_MAX_CONCURRENT_ENVS=1
# ============================================================================
# Logging Configuration
# ============================================================================
# Log level (DEBUG, INFO, WARNING, ERROR, CRITICAL)
SKYPLAN_LOG_LEVEL=INFO
# Log file path (optional, logs to stdout if not set)
# SKYPLAN_LOG_FILE=logs/skyplan.log