forked from im-hashim/automotive-claude-code-agents
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
85 lines (63 loc) · 2.38 KB
/
Copy path.env.example
File metadata and controls
85 lines (63 loc) · 2.38 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
79
80
81
82
83
84
85
# Automotive Claude Code - Environment Configuration
# Copy this file to .env and fill in your values
# NEVER commit .env file to version control!
# =============================================================================
# LLM API Keys (Required for LLM Council)
# =============================================================================
# Claude API (Anthropic)
ANTHROPIC_API_KEY=sk-ant-xxxxx
# OpenAI API (for GPT-5.4 multi-model collaboration)
OPENAI_API_KEY=sk-xxxxx
# =============================================================================
# Cloud Platform Credentials (Optional - for cloud connectivity features)
# =============================================================================
# AWS IoT
AWS_REGION=us-east-1
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_IOT_ENDPOINT=
# Azure IoT
AZURE_IOT_HUB_CONNECTION_STRING=
AZURE_STORAGE_CONNECTION_STRING=
AZURE_TENANT_ID=
AZURE_CLIENT_ID=
AZURE_CLIENT_SECRET=
# Google Cloud Platform
GCP_PROJECT_ID=
GCP_CREDENTIALS_FILE=
# =============================================================================
# Commercial Tool Licenses (Optional - if using commercial tools)
# =============================================================================
# Vector Tools
VECTOR_LICENSE_SERVER=
VECTOR_LICENSE_FILE=
# ETAS Tools
ETAS_LICENSE_SERVER=
ETAS_INCA_LICENSE=
# dSPACE Tools
DSPACE_LICENSE_SERVER=
# =============================================================================
# Development Settings
# =============================================================================
# Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL)
LOG_LEVEL=INFO
# Enable debug mode
DEBUG=false
# Test mode (uses mock adapters instead of real tools)
TEST_MODE=false
# =============================================================================
# Tool Preferences
# =============================================================================
# Preferred tool selection (auto, commercial, opensource)
TOOL_PREFERENCE=auto
# Force opensource alternatives even if commercial tools available
FORCE_OPENSOURCE=false
# =============================================================================
# Performance Tuning
# =============================================================================
# Maximum concurrent agents
MAX_CONCURRENT_AGENTS=10
# LLM request timeout (seconds)
LLM_TIMEOUT=60
# Tool execution timeout (seconds)
TOOL_TIMEOUT=300