hendrik/default-config.yaml

66 lines
2.1 KiB
YAML
Raw Normal View History

2026-06-17 15:04:54 +07:00
# Copy and edit to `config.yaml`
agent:
2026-06-29 17:17:07 +07:00
character : hendrik # Directory name in agent/characters/<character>/
max_iterations : 30 # step(s)
max_history_chat : 0 # message(s) - 0 for unlimited (Dead Config)
max_tool_output : 0 # character(s) - 0 for unlimited (Connected to AGENT_MAX_TOOL_OUTPUT but Dead Config)
2026-06-17 15:04:54 +07:00
llm:
timeout: 3000 # second
providers:
- name : "Ollama Local"
base_url : "http://localhost:11434/v1"
api_key : "ollama"
models :
- name : "granite4.1:8b"
- name : "Transformers API Local"
base_url : "http://localhost:12345/v1"
api_key : "sk-not-needed"
models :
- name : "granite4.1:8b"
- name : "Ollama Cloud"
base_url : "https://ollama.com/v1"
api_key : ""
models :
- name : "ministral-3:14b-cloud"
- name : "gemma4:31b-cloud"
default : true
- name : "OpenRouter"
base_url : "https://openrouter.ai/api/v1"
api_key : ""
models :
- name : "openrouter/owl-alpha"
- name : "nex-agi/nex-n2-pro:free"
- name : "z-ai/glm-5"
2026-07-07 06:03:21 +07:00
ragroleplay:
db_path : "./.ragroleplay"
vector_size : 768 # used on table create only
model_url : "http://localhost:11434/api/embed"
model_name : "nomic-embed-text" # Need to download model from local ollama
2026-06-17 16:00:26 +07:00
session:
db_path: "~/.config/hendrik/sessions.json"
2026-06-17 15:04:54 +07:00
xmpp:
enabled: false
2026-07-12 15:01:17 +07:00
username: ""
password: ""
2026-06-17 15:04:54 +07:00
muc_rooms: "" # comma-separated, e.g. "room1@conference.server,room2@conference.server"
nickname: "" # custom MUC nickname (empty = use username)
selective_response: true # true = only response if mentioned/relevant
telegram:
enabled: false
2026-07-12 15:01:17 +07:00
token: ""
2026-06-17 15:04:54 +07:00
allowed_group_ids: "" # comma-separated, empty = all group
selective_response: true # true = only response if mentioned/relevant
2026-06-24 17:11:03 +07:00
delay: # Humanize Delay (anti-bot detection)
2026-06-29 17:17:07 +07:00
read_min : 1.0 # second
read_max : 2.0 # second
typing_speed : 15.0 # character(s) per second
typing_max : 10.0 # max typing delay limit per second
2026-06-17 15:04:54 +07:00