-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
49 lines (38 loc) · 1.51 KB
/
Copy path.env.example
File metadata and controls
49 lines (38 loc) · 1.51 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
# CHAINREFLEX OS - ENVIRONMENT CONFIGURATION
# Copy this file to .env and fill in your private keys
# --- AI INFRASTRUCTURE ---
# Hugging Face Token (Inference API)
HF_TOKEN=your_huggingface_token_here
# AMD hardware endpoint (Target MI300X vLLM cluster)
VLLM_BASE_URL=http://localhost:8080/v1
VLLM_API_KEY=rocm-mi300x-local
# --- VRAM PARTITIONING (CONCURRENCY OPTIMIZATION) ---
DRAFT_MODEL=meta-llama/Meta-Llama-3-70B-Instruct
ORACLE_MODEL=codellama/CodeLlama-34b-Instruct-hf
# --- GITOPS INTEGRATION ---
# GitHub Token (for opening Pull Requests)
GITHUB_TOKEN=your_github_token_here
# --- ENTERPRISE ALERTING ---
# Discord Webhook for security notifications
DISCORD_WEBHOOK_URL=your_discord_webhook_url_here
# --- SYSTEM CONFIG ---
PORT=8000
DEBUG=false
# --- TELEMETRY & OBSERVABILITY ---
# Enable LangSmith for Deep Tracing
LANGCHAIN_TRACING_V2=true
LANGCHAIN_API_KEY=your_langsmith_api_key_here
LANGCHAIN_PROJECT="ChainReflex-OS-Enterprise"
# --- ZERO-TRUST SECURITY ---
# Hardcoded API Key to protect the Engine endpoints
ENTERPRISE_API_KEY=chainreflex-default-key
# --- ADVANCED DEVSECOPS INTEGRATIONS ---
# PagerDuty Sev-1 Incident Routing
PAGERDUTY_ROUTING_KEY=your_pagerduty_routing_key_here
# Atlassian Jira / Linear Ticketing
JIRA_API_KEY=your_jira_api_key_here
JIRA_URL=https://api.atlassian.com/ex/jira/mock-id/rest/api/3/issue
# --- FAIL-SAFE / PRESENTATION MODE ---
# Set to True if your AMD/HuggingFace API credits run out.
# This bypasses the LLMs and returns a 100% flawless pre-baked AI response.
DEMO_MODE=True