30 lines
1.0 KiB
Plaintext
30 lines
1.0 KiB
Plaintext
# Environment Variables for AI Agent
|
|
# Copy to .env and modify as needed
|
|
|
|
# LLM Configuration
|
|
LLM_BASE_URL=http://localhost:11434/v1
|
|
LLM_MODEL=deepseek-r1:8b
|
|
LLM_API_KEY=ollama
|
|
AGENT_MAX_ITERATIONS=10
|
|
MAX_TOOL_OUTPUT=4000
|
|
|
|
# XMPP (default: disabled)
|
|
XMPP_ENABLED=False
|
|
XMPP_USERNAME=
|
|
XMPP_PASSWORD=
|
|
# XMPP_MUC_ROOMS=room1@conference.server,room2@conference.server
|
|
|
|
# ─── Persona / Mode ──────────────────────────────────────────────────────────
|
|
# Mode AI: "programmer" (default, koding) | "roleplayer" (ngobrol)
|
|
PERSONA_MODE=programmer
|
|
|
|
# Personality
|
|
PERSONA_NAME=OWL
|
|
PERSONA_TONE=casual # casual | formal | playful | warm
|
|
PERSONA_VERBOSITY=balanced # concise | balanced | detailed
|
|
PERSONA_HUMOR=light # none | light | witty
|
|
PERSONA_LANGUAGE=id # id | en | (kosong = auto)
|
|
PERSONA_MOOD=cheerful # cheerful | calm | energetic | sarcastic
|
|
# PERSONA_CATCHPHRASES=Siap bro!, Haha~, Wkwkwk
|
|
|