28 lines
919 B
Bash
28 lines
919 B
Bash
# ==========================================
|
|
# OPENCLAW & OLLAMA CONFIGURATION ENVIRONMENT
|
|
# ==========================================
|
|
|
|
# --- LLM ENGINE & MODEL SELECTION ---
|
|
MODEL_LIST=gemma4:e4b,qwen3.6:35b-a3b-q4_K_M
|
|
OLLAMA_KEEP_ALIVE=-1
|
|
|
|
# --- HARDWARE RESOURCES ---
|
|
# GPU Vendor (e.g. "amd", "nvidia", "intel")
|
|
GPU_TYPE=amd
|
|
# Shared Memory Size (e.g. 16gb for large AMD cards, 8gb for NVIDIA)
|
|
SHM_SIZE=16gb
|
|
|
|
# --- SECURITY & AUTHENTICATION ---
|
|
OPENCLAW_PASSWORD=mein-sicheres-passwort
|
|
|
|
# --- NETWORK ---
|
|
DNS_SERVER=8.8.8.8
|
|
|
|
# --- HOST MOUNT VOLUMES ---
|
|
# Local Path to Your openclaw.json
|
|
HOST_OPENCLAW_JSON_PATH=/home/ghost/source/repos/ghostnet-openclaw/openclaw/config/openclaw.json
|
|
# Local Path for the AI Workspace (persistent storage for agent's work)
|
|
HOST_WORKSPACE_PATH=./storage/workspace
|
|
# Local Path for Additional Repositories or Code Directories for the Agent
|
|
HOST_REPOS_PATH=/home/ghost/source/repos
|