Spaces:
Running
Running
File size: 1,119 Bytes
7b4f5dd | 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 | # π‘οΈ CodeSentry Backend Configuration
# ββ Server ββββββββββββββββββββββββββββββββββ
PORT=8000
HOST=0.0.0.0
RELOAD=true
CORS_ORIGINS=*
# ββ LLM Configuration βββββββββββββββββββββββ
# For Local vLLM (AMD MI300X):
# VLLM_BASE_URL=http://localhost:8080/v1
# MODEL_NAME=Qwen/Qwen2.5-Coder-32B-Instruct
# LLM_API_KEY=not-needed-local
# For Groq:
# VLLM_BASE_URL=https://api.groq.com/openai/v1
# MODEL_NAME=llama-3.3-70b-versatile
# LLM_API_KEY=gsk_your_groq_api_key_here
VLLM_BASE_URL=http://localhost:8080/v1
MODEL_NAME=Qwen/Qwen2.5-Coder-32B-Instruct
LLM_API_KEY=not-needed-local
# ββ Analysis Mode βββββββββββββββββββββββββββ
# Set to false for static-only scanning (no GPU/API needed)
USE_LLM=true
# ββ Privacy & Security ββββββββββββββββββββββ
# HMAC key for cryptographically signing ZDR certificates
# CHANGE THIS IN PRODUCTION!
ZDR_SIGNING_KEY=codesentry-dev-secret-key-12345
|