2026-03-14 02:51:10 +01:00
|
|
|
# Onboarding profile — setup/onboarding or setup/profile can detect defaults from FreeBSD locale/timezone
|
|
|
|
|
SETUP_LOCALE=en-US
|
|
|
|
|
DISPLAY_LOCALE=en-US
|
|
|
|
|
ASSISTANT_LOCALE=en-US
|
|
|
|
|
SYSTEM_LOCALE=en_US.UTF-8
|
|
|
|
|
TZ=UTC
|
|
|
|
|
|
|
|
|
|
# Agent identity — ASSISTANT_NAME is primary; AGENT_NAME is auto-derived unless overridden
|
2026-03-10 17:27:35 +00:00
|
|
|
# AGENT_NAME drives all system identifiers (user, service, ZFS, DB names)
|
|
|
|
|
AGENT_NAME=clawdie
|
2026-03-07 21:15:16 +01:00
|
|
|
ASSISTANT_NAME=Clawdie
|
Skills engine v0.1 + multi-channel infrastructure (#307)
* refactor: multi-channel infrastructure with explicit channel/is_group tracking
- Add channels[] array and findChannel() routing in index.ts, replacing
hardcoded whatsapp.* calls with channel-agnostic callbacks
- Add channel TEXT and is_group INTEGER columns to chats table with
COALESCE upsert to protect existing values from null overwrites
- is_group defaults to 0 (safe: unknown chats excluded from groups)
- WhatsApp passes explicit channel='whatsapp' and isGroup to onChatMetadata
- getAvailableGroups filters on is_group instead of JID pattern matching
- findChannel logs warnings instead of silently dropping unroutable JIDs
- Migration backfills channel/is_group from JID patterns for existing DBs
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* feat: skills engine v0.1 — deterministic skill packages with rerere resolution
Three-way merge engine for applying skill packages on top of a core
codebase. Skills declare which files they add/modify, and the engine
uses git merge-file for conflict detection with git rerere for
automatic resolution of previously-seen conflicts.
Key components:
- apply: three-way merge with backup/rollback safety net
- replay: clean-slate replay for uninstall and rebase
- update: core version updates with deletion detection
- rebase: bake applied skills into base (one-way)
- manifest: validation with path traversal protection
- resolution-cache: pre-computed rerere resolutions
- structured: npm deps, env vars, docker-compose merging
- CI: per-skill test matrix with conflict detection
151 unit tests covering merge, rerere, backup, replay, uninstall,
update, rebase, structured ops, and edge cases.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* feat: add Discord and Telegram skill packages
Skill packages for adding Discord and Telegram channels to NanoClaw.
Each package includes:
- Channel implementation (add/src/channels/)
- Three-way merge targets for index.ts, config.ts, routing.test.ts
- Intent docs explaining merge invariants
- Standalone integration tests
- manifest.yaml with dependency/conflict declarations
Applied via: npx tsx scripts/apply-skill.ts .claude/skills/add-discord
These are inert until applied — no runtime impact.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* remove unused docs (skills-system-status, implementation-guide)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 01:55:00 +02:00
|
|
|
|
2026-03-07 21:15:16 +01:00
|
|
|
# Primary engine for fresh installs
|
|
|
|
|
AGENT_ENGINE=pi-tui
|
|
|
|
|
PI_TUI_BIN=pi
|
2026-03-14 20:50:05 +01:00
|
|
|
# Profile presets:
|
|
|
|
|
# setup, operator, status, payments, docs, cms, git, memory, local
|
|
|
|
|
# Explicit provider/model values below override the profile defaults.
|
|
|
|
|
PI_TUI_PROFILE=operator
|
2026-03-10 12:29:55 +00:00
|
|
|
PI_TUI_PROVIDER=zai
|
2026-04-18 18:21:25 +00:00
|
|
|
PI_TUI_MODEL=glm-5-turbo
|
2026-03-07 21:15:16 +01:00
|
|
|
|
|
|
|
|
# Primary API key for pi
|
2026-03-10 12:29:55 +00:00
|
|
|
ZAI_API_KEY=
|
2026-04-11 20:37:15 +02:00
|
|
|
# ZAI API base URL — override if the default endpoint does not match your key
|
|
|
|
|
# pi uses https://api.z.ai/api/coding/paas/v4; litellm defaults differ
|
|
|
|
|
# ZAI_API_BASE=https://api.z.ai/api/coding/paas/v4
|
2026-03-07 21:15:16 +01:00
|
|
|
|
|
|
|
|
# Optional alternative providers supported by pi
|
|
|
|
|
# OPENAI_API_KEY=
|
|
|
|
|
# ANTHROPIC_API_KEY=
|
|
|
|
|
# GEMINI_API_KEY=
|
2026-03-10 12:29:55 +00:00
|
|
|
# OPENROUTER_API_KEY=
|
2026-03-07 21:15:16 +01:00
|
|
|
|
2026-03-10 18:22:17 +00:00
|
|
|
# Ollama Cloud — free tier at ollama.com, no local hardware needed
|
|
|
|
|
# Sign up at https://ollama.com, create API key in settings
|
|
|
|
|
# Provides access to 30+ models including coding, reasoning, and vision
|
|
|
|
|
# OLLAMA_API_KEY=
|
|
|
|
|
|
2026-04-02 15:18:22 +00:00
|
|
|
# Local LLM runtime (optional)
|
|
|
|
|
# LOCAL_LLM_PROVIDER=none|ollama|llama_cpp
|
|
|
|
|
LOCAL_LLM_PROVIDER=none
|
|
|
|
|
FEATURE_OLLAMA=NO
|
|
|
|
|
FEATURE_LLAMA_CPP=NO
|
|
|
|
|
FEATURE_OLLAMA_HPP=NO
|
2026-04-04 15:40:47 +00:00
|
|
|
FEATURE_TAILSCALE=NO
|
|
|
|
|
TAILSCALE_AUTHKEY=
|
2026-04-02 15:18:22 +00:00
|
|
|
|
2026-03-07 21:15:16 +01:00
|
|
|
# Channels
|
|
|
|
|
TELEGRAM_BOT_TOKEN=
|
2026-03-08 21:48:30 +00:00
|
|
|
|
2026-04-19 07:11:51 +00:00
|
|
|
# Controlplane agent API auth (jail agents -> host API)
|
|
|
|
|
# Generate: openssl rand -base64 32
|
|
|
|
|
CONTROLPLANE_SHARED_SECRET=
|
|
|
|
|
|
|
|
|
|
# Better Auth base URL (required to avoid callback/redirect warnings)
|
|
|
|
|
# Default is http://127.0.0.1:3100, set to your nginx/Tailscale URL if exposed.
|
|
|
|
|
BETTER_AUTH_URL=http://127.0.0.1:3100
|
|
|
|
|
|
2026-04-18 13:38:09 +00:00
|
|
|
# Prompt/token guardrails (model context safety)
|
|
|
|
|
# These are char/byte-based caps (fast, model-agnostic).
|
|
|
|
|
# Increase in dev if you paste large logs; keep conservative in production.
|
|
|
|
|
AGENT_MAX_INBOUND_CHARS=12000
|
|
|
|
|
AGENT_MAX_BACKLOG_MESSAGES=20
|
|
|
|
|
AGENT_MAX_BACKLOG_CHARS=25000
|
|
|
|
|
AGENT_MAX_PROMPT_CHARS=60000
|
docs: comprehensive doc audit — update 16 files for consistency with codebase
Systematic review of all doc/, docs/internal/, docs/public/, ARCHITECTURE.md,
and README.md against recent codebase changes. 16 files updated:
Cross-cutting fixes (multiple files):
- Model references: anthropic/claude-3-5-sonnet → zai/glm-5-turbo (4 files)
- Port references: hardcoded 3100 → CONTROLPLANE_API_PORT (3 files)
- Skills mechanism: --no-skills + --append-system-prompt + skills_search (6 files)
- CONTROLPLANE_SHARED_SECRET: documented in security, architecture, install (5 files)
- Prompt guardrails: AGENT_MAX_INBOUND_CHARS etc. added to 3 files
- controlplane is NOT a jail — runs on host (3 files corrected)
- git jail added to layouts and IP tables (3 files)
- npm run → just (2 files)
Specific fixes:
- .env.example: AGENT_SESSION_MAX_BYTES session rollover hint
- README.md: fix IP layout (git=.6 not .4), add run-*.sh generation note
- ARCHITECTURE.md: add config vars, recipe count update, --no-skills
- doc/CONTROLPLANE-AGENT-ROLES.md: fix model, remove deleted file ref
- doc/CONTROLPLANE-ARCHITECTURE.md: port params, security, guardrails section
- doc/CONTROLPLANE-MESSAGE-CONTRACT.md: auth header, skills catalog rewrite
- doc/SESSION-HANDOFF-2026-04-18.md: fix Telegram (plain text not Markdown)
- doc/THREE-BIRD-ARCHITECTURE.md: fix 5 broken STRAPI-FREEBSD-GOTCHA refs
- doc/HANDOFF-PHASE7.md: mark sysprompt cleanup as done
- docs/internal/DOCUMENTATION.md: just CLI, tracked hooks, parameterized paths
- docs/internal/HEARTBEAT.md: add controlplane heartbeat reference, fix setup step
- docs/public/architecture/controlplane.md: phases 2-7 all ✅ DONE
- docs/public/architecture/freebsd-jail-implementation.md: git jail, Forgejo
- docs/public/architecture/warden.md: controlplane=host, git jail added
- docs/public/operate/monitoring.md: just doctor, all guardrail vars
- docs/public/operate/security.md: API auth, shell injection, guardrails
Build: pass | Tests: not run (Linux) (Sam & Claude)
2026-04-18 22:15:50 +02:00
|
|
|
# Session files exceeding this size trigger an automatic fresh session
|
|
|
|
|
# (prevents model context_window_exceeded errors).
|
2026-04-18 19:59:15 +00:00
|
|
|
AGENT_SESSION_MAX_BYTES=200000
|
2026-04-18 13:38:09 +00:00
|
|
|
|
2026-04-06 19:53:07 +02:00
|
|
|
# Crowdin — Translation management for multi-language docs
|
|
|
|
|
# Free for open source: https://crowdin.com/open-source
|
|
|
|
|
# Create token at: https://crowdin.com/settings#api-key
|
|
|
|
|
CROWDIN_PERSONAL_TOKEN=
|
|
|
|
|
|
2026-04-03 09:36:40 +00:00
|
|
|
# SSH (optional) — used by Ansible when enabling sshd inside jails
|
2026-04-18 11:54:28 +02:00
|
|
|
# Also deployed to the git jail's git user authorized_keys automatically.
|
2026-04-03 09:36:40 +00:00
|
|
|
# Example: SSH_PUBLIC_KEY="ssh-ed25519 AAAA... you@host"
|
|
|
|
|
SSH_PUBLIC_KEY=
|
2026-04-18 11:54:28 +02:00
|
|
|
# Private key path for git-admin agent (public key auto-derived for git jail)
|
|
|
|
|
# GIT_SSH_KEY_PATH=/home/mevy/.ssh/id_ed25519
|
2026-04-03 09:36:40 +00:00
|
|
|
|
2026-03-14 17:41:41 +01:00
|
|
|
# Stripe is built into the default Clawdie runtime.
|
|
|
|
|
# Leave blank to skip for now, or set a Restricted key from
|
|
|
|
|
# Stripe Dashboard -> Developers -> API Keys -> Restricted Keys.
|
|
|
|
|
STRIPE_SECRET_KEY=
|
|
|
|
|
STRIPE_ENABLE_REFUNDS=NO
|
|
|
|
|
|
|
|
|
|
# Domain split:
|
|
|
|
|
# AGENT_DOMAIN -> public-facing site/API domain
|
|
|
|
|
# AGENT_INTERNAL_DOMAIN -> internal jail/service names written into /etc/hosts
|
|
|
|
|
#
|
|
|
|
|
# Use home.arpa for internal-only names. .local is reserved for mDNS and can
|
|
|
|
|
# create resolver ambiguity on the local link.
|
2026-03-14 19:45:15 +01:00
|
|
|
# Use .invalid as the safe placeholder until you set a real public domain.
|
|
|
|
|
# These example values match the default AGENT_NAME above; replace them if you rename the agent.
|
|
|
|
|
AGENT_DOMAIN=clawdie.invalid
|
|
|
|
|
AGENT_INTERNAL_DOMAIN=clawdie.home.arpa
|
2026-03-14 17:41:41 +01:00
|
|
|
|
|
|
|
|
# Local code hosting defaults
|
|
|
|
|
# Current main provisions a dedicated git jail by default.
|
|
|
|
|
CODE_HOSTING_MODE=git
|
|
|
|
|
REMOTE_GIT_URL=https://codeberg.org/Clawdie/Clawdie-AI.git
|
2026-04-18 11:47:14 +00:00
|
|
|
# Local git jail — primary push target for agents (no Codeberg keys needed)
|
|
|
|
|
GIT_LOCAL_URL=git@10.0.1.6:/srv/git/Clawdie-AI.git
|
2026-03-14 17:41:41 +01:00
|
|
|
FEATURE_GIT=YES
|
|
|
|
|
FEATURE_GITEA=NO
|
2026-04-18 07:02:25 +00:00
|
|
|
# Optional: isolate git-admin agent edits to a dedicated working tree
|
|
|
|
|
# (mounted into the git-worker jail at /opt/repo). If unset, the git-admin
|
|
|
|
|
# worker may mount the project root as its repo.
|
|
|
|
|
# AGENT_REPO_DIR=/home/<agent>/<project>/data/worktrees/git-admin
|
2026-03-10 09:21:44 +00:00
|
|
|
|
|
|
|
|
# Warden jail network — choose your private subnet at bootstrap.
|
2026-03-14 17:41:41 +01:00
|
|
|
# AGENT_SUBNET_BASE is the current primary key; WARDEN_* stays for compatibility.
|
2026-03-10 09:21:44 +00:00
|
|
|
# Code defaults to 10.0.0.x if these are not set.
|
|
|
|
|
# Common choices: 192.168.100.x, 10.0.0.x, 172.16.50.x
|
2026-03-10 19:12:20 +00:00
|
|
|
#
|
|
|
|
|
# Reserved IPs (lower = more foundational to agent runtime):
|
|
|
|
|
# .1 Gateway — bridge interface
|
2026-03-14 19:45:15 +01:00
|
|
|
# .2 Reserved — compatibility slot, do not use for new runtime
|
2026-03-10 19:12:20 +00:00
|
|
|
# .3 Database — PostgreSQL (skills + memory)
|
2026-04-02 15:18:22 +00:00
|
|
|
# .4 CMS — Astro/Strapi content (if enabled)
|
|
|
|
|
# .5 Local LLM — Ollama or llama-cpp (if enabled)
|
|
|
|
|
# .6 Git — local bare repositories
|
2026-03-14 17:41:41 +01:00
|
|
|
# .101+ Worker — jailed agent execution
|
|
|
|
|
# .150 Browser VM — reserved browser automation profile
|
|
|
|
|
AGENT_SUBNET_BASE=10.0.0
|
2026-03-10 09:21:44 +00:00
|
|
|
WARDEN_SUBNET_BASE=10.0.0
|
|
|
|
|
WARDEN_SUBNET=10.0.0.0/24
|
|
|
|
|
WARDEN_GATEWAY=10.0.0.1
|
2026-03-14 19:45:15 +01:00
|
|
|
# Legacy compatibility only; there is no active controlplane jail on current main.
|
2026-04-03 09:36:40 +00:00
|
|
|
WARDEN_CONTROLPLANE_IP=10.0.0.2
|
2026-03-10 19:12:20 +00:00
|
|
|
WARDEN_DB_IP=10.0.0.3
|
2026-04-02 15:18:22 +00:00
|
|
|
WARDEN_CMS_IP=10.0.0.4
|
|
|
|
|
WARDEN_OLLAMA_IP=10.0.0.5
|
|
|
|
|
WARDEN_LLAMA_CPP_IP=10.0.0.5
|
|
|
|
|
WARDEN_GIT_IP=10.0.0.6
|
2026-03-10 09:21:44 +00:00
|
|
|
|
2026-04-12 12:07:08 +00:00
|
|
|
# PostgreSQL runtime: jail (default) or host.
|
|
|
|
|
# When DB_RUNTIME=host, DB_HOST defaults to ${AGENT_SUBNET_BASE}.1 so jails can reach it.
|
|
|
|
|
DB_RUNTIME=jail
|
|
|
|
|
DB_HOST=
|
|
|
|
|
# ZFS dataset compression for host-based PostgreSQL (lz4 default, zstd optional).
|
|
|
|
|
DB_COMPRESSION=lz4
|
|
|
|
|
|
docs: update SQLite references to PostgreSQL ops database (Sam & Claude)
Split-brain architecture now spans three PostgreSQL databases:
skills (read-only), memory (dynamic), and ops (operational state).
SQLite is fully removed from the runtime.
Updated: README, public docs site, install guide, internal docs,
agent memory, skill files, backup/restore procedure, debug checklist,
and 6 marketing page translations.
---
Build: pass | Tests: not run (Linux)
2026-04-11 14:56:24 +02:00
|
|
|
# PostgreSQL — split-brain architecture (three databases, all in db jail at .3)
|
2026-03-10 17:27:35 +00:00
|
|
|
# Skills DB: ships with repo, restored from dump, read-only at runtime
|
|
|
|
|
# Memory DB: user data, grows with conversations, needs backups
|
2026-04-11 12:20:51 +02:00
|
|
|
# Ops DB: operational data (chats, messages, tasks, sessions, routing)
|
2026-03-14 17:41:41 +01:00
|
|
|
# setup/onboarding and setup/db will generate these if missing and keep the
|
|
|
|
|
# URLs below in sync with AGENT_NAME, subnet, and passwords.
|
|
|
|
|
# PostgreSQL identifiers use a DB-safe namespace derived from AGENT_NAME:
|
2026-04-11 12:20:51 +02:00
|
|
|
# clawdie-ai -> clawdie_ai_reader / clawdie_ai_skills / clawdie_ai_brain / clawdie_ai_ops
|
2026-03-08 21:48:30 +00:00
|
|
|
POSTGRES_ADMIN_PASSWORD=
|
2026-03-14 17:41:41 +01:00
|
|
|
SKILLS_DB_PASSWORD=
|
2026-03-10 17:27:35 +00:00
|
|
|
MEMORY_DB_PASSWORD=
|
2026-04-11 12:20:51 +02:00
|
|
|
OPS_DB_PASSWORD=
|
2026-04-11 14:47:18 +00:00
|
|
|
FORGEJO_DB_PASSWORD=
|
2026-03-14 19:45:15 +01:00
|
|
|
SKILLS_DB_URL=
|
|
|
|
|
MEMORY_DB_URL=
|
2026-04-11 12:20:51 +02:00
|
|
|
OPS_DB_URL=
|
2026-04-11 14:47:18 +00:00
|
|
|
FORGEJO_DB_URL=
|
2026-03-14 18:39:43 +01:00
|
|
|
# Strapi secrets are generated automatically by onboarding/db/cms if missing.
|
|
|
|
|
# They back the internal Strapi app in the cms jail and should not be exposed.
|
2026-03-08 21:48:30 +00:00
|
|
|
STRAPI_DB_PASSWORD=
|
2026-03-14 17:41:41 +01:00
|
|
|
STRAPI_APP_KEYS=
|
|
|
|
|
STRAPI_API_TOKEN_SALT=
|
|
|
|
|
STRAPI_ADMIN_JWT_SECRET=
|
|
|
|
|
STRAPI_TRANSFER_TOKEN_SALT=
|
|
|
|
|
STRAPI_JWT_SECRET=
|
|
|
|
|
CMS_ENABLE=NO
|
2026-04-12 11:30:03 +00:00
|
|
|
CMS_ADMIN_UI=NO
|
2026-03-14 17:41:41 +01:00
|
|
|
GIT_JAIL_NAME=
|
|
|
|
|
GIT_JAIL_IP=
|
|
|
|
|
GIT_STORAGE_ROOT=
|
|
|
|
|
GIT_DEFAULT_REPO_NAME=
|
2026-04-03 09:36:40 +00:00
|
|
|
# Multi-agent note: if you run multiple agents on one host, set explicit jail
|
|
|
|
|
# names so service jails do not collide.
|
|
|
|
|
CMS_JAIL_NAME=
|
|
|
|
|
OLLAMA_JAIL_NAME=
|
|
|
|
|
LLAMA_CPP_JAIL_NAME=
|
|
|
|
|
|
2026-04-05 06:29:19 +00:00
|
|
|
# CMS_JAIL_NAME defaults to "cms" and auto-detects legacy names.
|
2026-04-03 09:36:40 +00:00
|
|
|
# CMS_JAIL_IP defaults to ${AGENT_SUBNET_BASE}.4 when setup --step cms runs.
|
2026-03-14 17:41:41 +01:00
|
|
|
# CMS_WEBROOT defaults to /srv/www
|
|
|
|
|
# CMS_ASTRO_PATH defaults to /home/clawdie/clawdie-site
|
2026-03-14 18:39:43 +01:00
|
|
|
# CMS_STRAPI_PATH defaults to /home/clawdie/strapi
|
|
|
|
|
# CMS_STRAPI_URL defaults to http://cms.<agent>.home.arpa:1337/api
|
|
|
|
|
# CMS_STRAPI_ADMIN_URL defaults to http://cms.<agent>.home.arpa:1337/admin
|
|
|
|
|
# CMS_ASTRO_MODE=strapi-seed
|
2026-03-08 21:48:30 +00:00
|
|
|
|
2026-03-14 22:51:55 +01:00
|
|
|
# Protected screenshots auth (generated by onboarding/cms if missing)
|
2026-03-08 21:48:30 +00:00
|
|
|
SCREENSHOTS_USER=clawdie
|
|
|
|
|
SCREENSHOTS_PASSWORD=
|
2026-04-07 14:47:34 +02:00
|
|
|
|
|
|
|
|
# Control Plane (multi-agent orchestration)
|
|
|
|
|
CONTROLPLANE_NAME=clawdie
|
|
|
|
|
CONTROLPLANE_DAILY_TOKENS=100000
|
|
|
|
|
CONTROLPLANE_PORT=3100
|
2026-04-18 21:16:25 +02:00
|
|
|
CONTROLPLANE_BIND_HOST=0.0.0.0
|
2026-04-19 08:32:29 +02:00
|
|
|
# IP address that jailed agents use to reach the host API (default: 10.0.1.1).
|
|
|
|
|
# CONTROLPLANE_HOST_IP=10.0.1.1
|
2026-04-08 20:28:12 +02:00
|
|
|
CONTROLPLANE_AUTH_MODE=local_trusted
|
2026-04-18 20:57:16 +02:00
|
|
|
# Shared secret for agent-to-API Bearer token auth (required for agent subprocesses).
|
|
|
|
|
# Generate with: openssl rand -base64 32
|
|
|
|
|
# CONTROLPLANE_SHARED_SECRET=
|
2026-04-08 21:23:28 +00:00
|
|
|
# CONTROLPLANE_RUNNER=pi
|
2026-04-12 08:26:20 +02:00
|
|
|
# CONTROLPLANE_AIDER_BIN=aider
|
|
|
|
|
# CONTROLPLANE_AIDER_FLAGS=--no-check-update --no-gitignore
|
|
|
|
|
# CONTROLPLANE_AIDER_TMUX_SESSION=clawdie-controlplane
|
|
|
|
|
# CONTROLPLANE_AIDER_LOG_DIR=/home/clawdie/clawdie-ai/tmp/controlplane/aider
|
2026-04-08 20:28:12 +02:00
|
|
|
# BETTER_AUTH_SECRET — required when CONTROLPLANE_AUTH_MODE=authenticated
|
2026-04-11 18:40:08 +00:00
|
|
|
CONTROLPLANE_DASHBOARD_DIR=/usr/local/www/clawdie/controlplane
|
2026-04-08 20:28:12 +02:00
|
|
|
# Generate with: openssl rand -base64 32
|
|
|
|
|
BETTER_AUTH_SECRET=
|
2026-04-07 14:47:34 +02:00
|
|
|
OPERATOR_PASSWORD=
|
2026-04-19 11:29:33 +00:00
|
|
|
|
|
|
|
|
# Vision fallback (optional) — OCR Telegram screenshots via OpenRouter.
|
|
|
|
|
# Requires OPENROUTER_API_KEY.
|
|
|
|
|
# VISION_PROVIDER=openrouter
|
|
|
|
|
# VISION_MODEL=nvidia/nemotron-nano-12b-v2-vl:free
|
|
|
|
|
# VISION_MAX_IMAGES=1
|
|
|
|
|
|
|
|
|
|
# TTS (optional) — simplest path uses `edge-tts` CLI (unofficial Microsoft voices).
|
|
|
|
|
# Install: `python3 -m pip install edge-tts`
|
|
|
|
|
# TTS_PROVIDER=edge-tts
|
|
|
|
|
# TTS_MODE=on_voice_input
|
|
|
|
|
# TTS_VOICE=en-US-AriaNeural
|
|
|
|
|
# TTS_RATE=+0%
|
|
|
|
|
# TTS_VOLUME=+0%
|
|
|
|
|
# TTS_MAX_CHARS=2000
|
2026-04-19 11:46:53 +00:00
|
|
|
|
|
|
|
|
# STT (optional) — transcribe Telegram voice notes.
|
|
|
|
|
# Default implementation supports OpenAI Whisper, or attempts OpenRouter with an OpenAI-compatible endpoint.
|
|
|
|
|
# STT_PROVIDER=openrouter
|
|
|
|
|
# STT_MODEL=openai/whisper-1
|