46 lines
1.3 KiB
Plaintext
46 lines
1.3 KiB
Plaintext
# Copy to .env and modify as needed
|
|
|
|
# Transformers API Local
|
|
# LLM_BASE_URL=http://localhost:12345/v1
|
|
# LLM_MODEL=granite4.1:8b
|
|
# LLM_API_KEY=sk-not-needed
|
|
|
|
# Ollama Local
|
|
# LLM_BASE_URL=http://localhost:11434/v1
|
|
# LLM_MODEL=granite4.1:8b
|
|
# LLM_API_KEY=ollama
|
|
|
|
# Ollama Cloud
|
|
# LLM_BASE_URL=https://ollama.com/v1
|
|
# LLM_MODEL=ministral-3:14b-cloud
|
|
# LLM_API_KEY=
|
|
|
|
# Openrouter AI
|
|
# LLM_BASE_URL=https://openrouter.ai/api/v1
|
|
# LLM_MODEL=openrouter/owl-alpha
|
|
# LLM_API_KEY=
|
|
|
|
AGENT_MAX_ITERATIONS=20
|
|
AGENT_MAX_TOOL_OUTPUT=4000
|
|
|
|
# Personality
|
|
PERSONA_MODE=programmer # Mode AI: "programmer" (default, koding) | "roleplayer" (ngobrol)
|
|
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=Hai, Gimana kabarnya?, Wkwkwk
|
|
|
|
XMPP_ENABLED=False
|
|
|
|
# XMPP_USERNAME=
|
|
# XMPP_PASSWORD=
|
|
# XMPP_MUC_ROOMS=room1@conference.server,room2@conference.server
|
|
|
|
# Selective response (roleplayer mode): true = hanya respon kalau ada mention/relevansi.
|
|
# false = semua pesan direspon (tanpa filter).
|
|
XMPP_SELECTIVE_RESPONSE=true
|
|
|