hermes - 💡(How to fix) Fix [i18n] Thai Translation: Reference Part f - providers, google-workspace [1 participants]
ON THIS PAGE
Recommended Tools
×6Utilities matched from this issue’s tags and category — try them while you read without losing context.
GitHub issue graph ai analysis
Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.
The report is written in English Markdown for sharing and archival.
Helpful · Quick feedback
Code Example
hermes model
# → pick "Google Gemini (OAuth)"
# → see policy warning, confirm
# → browser opens to accounts.google.com, sign in
# → done — Hermes auto-provisions your free tier on first request
---
/gquota
---
Gemini Code Assist quota (project: 123-abc)
gemini-2.5-pro ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓░░░░ 85%
gemini-2.5-flash [input] ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓░░ 92%
---
HERMES_GEMINI_CLIENT_ID=your-client.apps.googleusercontent.com
HERMES_GEMINI_CLIENT_SECRET=... # optional for Desktop clients
---
# With an API key (pay-per-token)
export ANTHROPIC_API_KEY=***
hermes chat --provider anthropic --model claude-sonnet-4-6
# Preferred: authenticate through `hermes model`
# Hermes จะใช้ Claude Code's credential store โดยตรงเมื่อมี
hermes model
# Manual override with a setup-token (fallback / legacy)
export ANTHROPIC_TOKEN=*** # setup-token หรือ manual OAuth token
hermes chat --provider anthropic
# Auto-detect Claude Code credentials (if you already use Claude Code)
hermes chat --provider anthropic # อ่านไฟล์ credential ของ Claude Code โดยอัตโนมัติ
---
model:
provider: "anthropic"
default: "claude-sonnet-4-6"
---
hermes chat --provider copilot --model gpt-5.4
---
hermes chat --provider copilot-acp --model copilot-acp
# Requires the GitHub Copilot CLI in PATH and an existing `copilot login` session
---
model:
provider: "copilot"
default: "gpt-5.4"
---
# z.ai / ZhipuAI GLM
hermes chat --provider zai --model glm-5
# Requires: GLM_API_KEY in ~/.hermes/.env
# Kimi / Moonshot AI (international: api.moonshot.ai)
hermes chat --provider kimi-coding --model kimi-for-coding
# Requires: KIMI_API_KEY in ~/.hermes/.env
# Kimi / Moonshot AI (China: api.moonshot.cn)
hermes chat --provider kimi-coding-cn --model kimi-k2.5
# Requires: KIMI_CN_API_KEY in ~/.hermes/.env
# MiniMax (global endpoint)
hermes chat --provider minimax --model MiniMax-M2.7
# Requires: MINIMAX_API_KEY in ~/.hermes/.env
# MiniMax (China endpoint)
hermes chat --provider minimax-cn --model MiniMax-M2.7
# Requires: MINIMAX_CN_API_KEY in ~/.hermes/.env
# Alibaba Cloud / DashScope (Qwen models)
hermes chat --provider alibaba --model qwen3.5-plus
# Requires: DASHSCOPE_API_KEY in ~/.hermes/.env
# Xiaomi MiMo
hermes chat --provider xiaomi --model mimo-v2-pro
# Requires: XIAOMI_API_KEY in ~/.hermes/.env
# Arcee AI (Trinity models)
hermes chat --provider arcee --model trinity-large-thinking
# Requires: ARCEEAI_API_KEY in ~/.hermes/.env
---
model:
provider: "zai" # or: kimi-coding, kimi-coding-cn, minimax, minimax-cn, alibaba, xiaomi, arcee
default: "glm-5"
---
hermes model
# → pick "Ollama Cloud"
# → paste your OLLAMA_API_KEY
# → select from discovered models (gpt-oss:120b, glm-4.6:cloud, qwen3-coder:480b-cloud, etc.)
---
model:
provider: "ollama-cloud"
default: "gpt-oss:120b"
---
# Simplest - named profile in ~/.aws/credentials
hermes chat --provider bedrock --model us.anthropic.claude-sonnet-4-6
# Or with explicit env vars
AWS_PROFILE=myprofile AWS_REGION=us-east-1 hermes chat --provider bedrock --model us.anthropic.claude-sonnet-4-6
---
model:
provider: "bedrock"
default: "us.anthropic.claude-sonnet-4-6"
bedrock:
region: "us-east-1" # or set AWS_REGION
# profile: "myprofile" # or set AWS_PROFILE
# discovery: true # auto-discover region from IAM
# guardrail: # optional Bedrock Guardrails
# id: "your-guardrail-id"
# version: "DRAFT"
---
hermes model
# → pick "Qwen OAuth (Portal)"
# → browser opens; sign in with your Alibaba account
# → confirm — credentials are saved to ~/.hermes/auth.json
hermes chat # uses portal.qwen.ai/v1 endpoint
---
model:
provider: "qwen-oauth"
default: "qwen3-coder-plus"
---
# Cloud (build.nvidia.com)
hermes chat --provider nvidia --model nvidia/nemotron-3-super-120b-a12b
# Requires: NVIDIA_API_KEY in ~/.hermes/.env
# Local NIM endpoint - override base URL
NVIDIA_BASE_URL=http://localhost:8000/v1 hermmes chat --provider nvidia --model nvidia/nemotron-3-super-120b-a12b
---
model:
provider: "nvidia"
default: "nvidia/nemotron-3-super-120b-a12b"
---
# Use any available model
hermes chat --provider huggingface --model Qwen/Qwen3-235B-A22B-Thinking-2507
# Requires: HF_TOKEN in ~/.hermes/.env
# Short alias
hermes chat --provider hf --model deepseek-ai/DeepSeek-V3.2
---
model:
provider: "huggingface"
default: "Qwen/Qwen3-235B-A22B-Thinking-2507"
---
hermes model
# Select "Custom endpoint (self-hosted / VLLM / etc.)"
# Enter: API base URL, API key, Model name
---
# In ~/.hermes/config.yaml
model:
default: your-model-name
provider: custom
base_url: http://localhost:8000/v1
api_key: your-key-or-leave-empty-for-local
---
/model custom:qwen-2.5 # สลับไปใช้ model บน custom endpoint ของคุณ
/model custom # ตรวจจับ model อัตโนมัติจาก endpoint
/model openrouter:claude-sonnet-4 # สลับกลับไปใช้ cloud provider
---
/model custom:local:qwen-2.5 # ใช้ custom provider "local" กับ model qwen-2.5
/model custom:work:llama3 # ใช้ custom provider "work" กับ model llama3
---
# Install and run a model
ollama pull qwen2.5-coder:32b
ollama serve # Starts on port 11434
---
hermes model
# Select "Custom endpoint (self-hosted / VLLM / etc.)"
# Enter URL: http://localhost:11434/v1
# Skip API key (Ollama ไม่ต้องการ)
# Enter model name (เช่น qwen2.5-coder:32b)
---
model:
default: qwen2.5-coder:32b
provider: custom
base_url: http://localhost:11434/v1
context_length: 32768 # ดู warning ด้านล่าง
---
# Option 1: ตั้งค่า server-wide ผ่าน environment variable (recommended)
OLLAMA_CONTEXT_LENGTH=32768 ollama serve
# Option 2: สำหรับ Ollama ที่จัดการโดย systemd
sudo systemctl edit ollama.service
# Add: Environment="OLLAMA_CONTEXT_LENGTH=32768"
# Then: sudo systemctl daemon-reload && sudo systemctl restart ollama
# Option 3: ฝังค่าลงใน custom model (persistent per-model)
echo -e "FROM qwen2.5-coder:32b\nPARAMETER num_ctx 32768" > Modelfile
ollama create qwen2.5-coder-32k -f Modelfile
---
ollama ps
# ดูที่คอลัมน์ CONTEXT - ควรแสดงค่าที่คุณตั้งค่าไว้
---
pip install vllm
vllm serve meta-llama/Llama-3.1-70B-Instruct \
--port 8000 \
--max-model-len 65536 \
--tensor-parallel-size 2 \
--enable-auto-tool-choice \
--tool-call-parser hermes
---
hermes model
# Select "Custom endpoint (self-hosted / VLLM / etc.)"
# Enter URL: http://localhost:8000/v1
# Skip API key (หรือกรอกถ้าคุณตั้งค่า vLLM ด้วย --api-key)
# Enter model name: meta-llama/Llama-3.1-70B-Instruct
---
pip install "sglang[all]"
python -m sglang.launch_server \
--model meta-llama/Llama-3.1-70B-Instruct \
--port 30000 \
--context-length 65536 \
--tp 2 \
--tool-call-parser qwen
---
hermes model
# Select "Custom endpoint (self-hosted / VLLM / etc.)"
# Enter URL: http://localhost:30000/v1
# Enter model name: meta-llama/Llama-3.1-70B-Instruct
---
# Build and start llama-server
cmake -B build && cmake --build build --config Release
./build/bin/llama-server \
--jinja -fa \
-c 32768 \
-ngl 99 \
-m models/qwen2.5-coder-32b-instruct-Q4_K_M.gguf \
--port 8080 --host 0.0.0.0
---
hermes model
# Select "Custom endpoint (self-hosted / VLLM / etc.)"
# Enter URL: http://localhost:8080/v1
# Skip API key (local servers ไม่ต้องการ)
# Enter model name - หรือปล่อยว่างเพื่อตรวจจับอัตโนมัติหากโหลด model เพียงตัวเดียว
---
lms server start # Starts on port 1234
lms load qwen2.5-coder --context-length 32768
---
hermes model
# Select "Custom endpoint (self-hosted / VLLM / etc.)"
# Enter URL: http://localhost:1234/v1
# Skip API key (LM Studio ไม่ต้องการ)
# Enter model name
---
[wsl2]
networkingMode=mirrored
---
wsl --shutdown
---
curl http://localhost:11434/v1/models # Ollama บน Windows - ใช้งานได้
---
Set-NetFirewallHyperVVMSetting -Name '{40E0AC32-46A5-438A-A0B2-2B479E8F2E90}' -DefaultInboundAction Allow
---
# Get the Windows host IP (the default gateway of WSL2's virtual network)
ip route show | grep -i default | awk '{ print $3 }'
# ตัวอย่าง output: 172.29.192.1
---
model:
default: qwen2.5-coder:32b
provider: custom
base_url: http://172.29.192.1:11434/v1 # Windows host IP, ไม่ใช่ localhost
---
export WSL_HOST=$(ip route show | grep -i default | awk '{ print $3 }')
echo "Windows host at: $WSL_HOST"
curl http://$WSL_HOST:11434/v1/models # Test Ollama
---
sudo apt install libnss-mdns
curl http://$(hostname).local:11434/v1/models
---
# รันใน Admin PowerShell - แทนที่ PORT ด้วย port ของ server ของคุณ
New-NetFirewallRule -DisplayName "Allow WSL2 to Model Server" -Direction Inbound -Action Allow -Protocol TCP -LocalPort 11434
---
# แทนที่ URL ด้วย address และ port ของ server ของคุณ
curl http://localhost:11434/v1/models # Mirrored mode
curl http://172.29.192.1:11434/v1/models # NAT mode (ใช้ host IP จริงของคุณ)
---
# ตรวจสอบว่า Hermes คิดว่า context คืออะไร
# ดูที่บรรทัด startup: "Context limit: X tokens"
# ตรวจสอบ context จริงของ server ของคุณ
# Ollama: ollama ps (คอลัมน์ CONTEXT)
# llama.cpp: curl http://localhost:8080/props | jq '.default_generation_settings.n_ctx'
# vLLM: ตรวจสอบ --max-model-len ใน startup args
---
model:
default: your-model
provider: custom
base_url: http://localhost:11434/v1
context_length: 32768
---
# Install and start
pip install "litellm[proxy]"
litellm --model anthropic/claude-sonnet-4 --port 4000
# Or with a config file for multiple models:
litellm --config litellm_config.yaml --port 4000
---
model_list:
- model_name: "best"
litellm_params:
model: anthropic/claude-sonnet-4
api_key: sk-ant-...
- model_name: "best"
litellm_params:
model: openai/gpt-4o
api_key: sk-...
router_settings:
routing_strategy: "latency-based-routing"
---
# Install and start
npx @blockrun/clawrouter # Starts on port 8402
---
model:
default: meta-llama/Llama-3.1-70B-Instruct-Turbo
provider: custom
base_url: https://api.together.xyz/v1
api_key: your-together-key
---
model:
default: "qwen3.5:9b"
base_url: "http://localhost:8080/v1"
context_length: 131072 # tokens
---
custom_providers:
- name: "My Local LLM"
base_url: "http://localhost:11434/v1"
models:
qwen3.5:27b:
context_length: 32768
deepseek-r1:70b:
context_length: 65536
---
custom_providers:
- name: local
base_url: http://localhost:8080/v1
# api_key ถูกละไว้ - Hermes ใช้ "no-key-required" สำหรับ local servers ที่ไม่ต้องใช้ key
- name: work
base_url: https://gpu-server.internal.corp/v1
key_env: CORP_API_KEY
api_mode: chat_completions # optional, auto-detected from URL
- name: anthropic-proxy
base_url: https://proxy.example.com/anthropic
key_env: ANTHROPIC_PROXY_KEY
api_mode: anthropic_messages # สำหรับ Anthropic-compatible proxies
---
/model custom:local:qwen-2.5 # ใช้ endpoint "local" กับ qwen-2.5
/model custom:work:llama3-70b # ใช้ endpoint "work" กับ llama3-70b
/model custom:anthropic-proxy:claude-sonnet-4 # ใช้ proxy
---
git clone https://github.com/firecrawl/firecrawl
cd firecrawl
# In .env, set: USE_DB_AUTHENTICATION=false, HOST=0.0.0.0, PORT=3002
docker compose up -d
---
hermes config set FIRECRAWL_API_URL http://localhost:3002
---
provider_routing:
sort: "throughput" # "price" (default), "throughput", หรือ "latency"
# only: ["anthropic"] # ใช้เฉพาะผู้ให้บริการเหล่านี้
# ignore: ["deepinfra"] # ข้ามผู้ให้บริการเหล่านี้
# order: ["anthropic", "google"] # ลองใช้ผู้ให้บริการตามลำดับนี้
# require_parameters: true # ใช้เฉพาะผู้ให้บริการที่รองรับพารามิเตอร์คำขอทั้งหมด
# data_collection: "deny" # ยกเว้นผู้ให้บริการที่อาจจัดเก็บ/ฝึกฝนข้อมูล
---
fallback_model:
provider: openrouter # required
model: anthropic/claude-sonnet-4 # required
# base_url: http://localhost:8000/v1 # optional, สำหรับ custom endpoints
# key_env: MY_CUSTOM_KEY # optional, ชื่อ env var สำหรับ API key ของ custom endpoint
---
$GAPI gmail search "is:unread" --max 10
$GAPI gmail search "from:[email protected] newer_than:1d"
$GAPI gmail search "has:attachment filename:pdf newer_than:7d"
---
$GAPI gmail get MESSAGE_ID
---
# Basic send
$GAPI gmail send --to user@example.com --subject "Hello" --body "Message text"
# HTML email
$GAPI gmail send --to user@example.com --subject "Report" \
--body "<h1>Q4 Results</h1><p>Details here</p>" --html
# Custom From header (display name + email)
$GAPI gmail send --to user@example.com --subject "Hello" \
--from '"Research Agent" <[email protected]>' --body "Message text"
# With CC
$GAPI gmail send --to user@example.com --cc "[email protected]" \
--subject "Update" --body "FYI"
---
# Agent 1
$GAPI gmail send --to client@co.com --subject "Research Summary" \
--from '"Research Agent" <[email protected]>' --body "..."
# Agent 2
$GAPI gmail send --to client@co.com --subject "Code Review" \
--from '"Code Assistant" <[email protected]>' --body "..."
---
$GAPI gmail reply MESSAGE_ID \
--from '"Support Bot" <[email protected]>' --body "We're on it"
---
$GAPI gmail reply MESSAGE_ID --body "Thanks, that works for me."
---
# List all labels
$GAPI gmail labels
# Add/remove labels
$GAPI gmail modify MESSAGE_ID --add-labels LABEL_ID
$GAPI gmail modify MESSAGE_ID --remove-labels UNREAD
---
# List events (defaults to next 7 days)
$GAPI calendar list
$GAPI calendar list --start 2026-03-01T00:00:00Z --end 2026-03-07T23:59:59Z
# Create event (timezone required)
$GAPI calendar create --summary "Team Standup" \
--start 2026-03-01T10:00:00-07:00 --end 2026-03-01T10:30:00-07:00
# With location and attendees
$GAPI calendar create --summary "Lunch" \
--start 2026-03-01T12:00:00Z --end 2026-03-01T13:00:00Z \
--location "Cafe" --attendees "[email protected],[email protected]"
# Delete event
$GAPI calendar delete EVENT_ID
---
$GAPI drive search "quarterly report" --max 10
$GAPI drive search "mimeType='application/pdf'" --raw-query --max 5
---
# Read a range
$GAPI sheets get SHEET_ID "Sheet1!A1:D10"
# Write to a range
$GAPI sheets update SHEET_ID "Sheet1!A1:B2" --values '[["Name","Score"],["Alice","95"]]'
# Append rows
$GAPI sheets append SHEET_ID "Sheet1!A:C" --values '[["new","row","data"]]'
---
$GAPI docs get DOC_ID
---
$GAPI contacts list --max 20RAW_BUFFERClick to expand / collapse
📄 integrations/providers.md
title: "AI Providers" sidebar_label: "AI Providers" sidebar_position: 1
AI Providers
หน้านี้ครอบคลุมการตั้งค่า inference providers สำหรับ Hermes Agent ตั้งแต่ cloud APIs เช่น OpenRouter และ Anthropic ไปจนถึง self-hosted endpoints เช่น Ollama และ vLLM รวมถึงการตั้งค่า advanced routing และ fallback คุณต้องตั้งค่า provider อย่างน้อยหนึ่งตัวเพื่อใช้ Hermes
Inference Providers
คุณต้องมีวิธีเชื่อมต่อกับ LLM อย่างน้อยหนึ่งวิธี ใช้ hermes model เพื่อสลับ provider และ model แบบ interactive หรือตั้งค่าโดยตรง:
| Provider | Setup |
|---|---|
| Nous Portal | hermes model (OAuth, subscription-based) |
| OpenAI Codex | hermes model (ChatGPT OAuth, uses Codex models) |
| GitHub Copilot | hermes model (OAuth device code flow, COPILOT_GITHUB_TOKEN, GH_TOKEN, หรือ gh auth token) |
| GitHub Copilot ACP | hermes model (spawns local copilot --acp --stdio) |
| Anthropic | hermes model (Claude Pro/Max via Claude Code auth, Anthropic API key, หรือ manual setup-token) |
| OpenRouter | OPENROUTER_API_KEY in ~/.hermes/.env |
| AI Gateway | AI_GATEWAY_API_KEY in ~/.hermes/.env (provider: ai-gateway) |
| z.ai / GLM | GLM_API_KEY in ~/.hermes/.env (provider: zai) |
| Kimi / Moonshot | KIMI_API_KEY in ~/.hermes/.env (provider: kimi-coding) |
| Kimi / Moonshot (China) | KIMI_CN_API_KEY in ~/.hermes/.env (provider: kimi-coding-cn; aliases: kimi-cn, moonshot-cn) |
| Arcee AI | ARCEEAI_API_KEY in ~/.hermes/.env (provider: arcee; aliases: arcee-ai, arceeai) |
| MiniMax | MINIMAX_API_KEY in ~/.hermes/.env (provider: minimax) |
| MiniMax China | MINIMAX_CN_API_KEY in ~/.hermes/.env (provider: minimax-cn) |
| Alibaba Cloud | DASHSCOPE_API_KEY in ~/.hermes/.env (provider: alibaba, aliases: dashscope, qwen) |
| Kilo Code | KILOCODE_API_KEY in ~/.hermes/.env (provider: kilocode) |
| Xiaomi MiMo | XIAOMI_API_KEY in ~/.hermes/.env (provider: xiaomi, aliases: mimo, xiaomi-mimo) |
| OpenCode Zen | OPENCODE_ZEN_API_KEY in ~/.hermes/.env (provider: opencode-zen) |
| OpenCode Go | OPENCODE_GO_API_KEY in ~/.hermes/.env (provider: opencode-go) |
| DeepSeek | DEEPSEEK_API_KEY in ~/.hermes/.env (provider: deepseek) |
| Hugging Face | HF_TOKEN in ~/.hermes/.env (provider: huggingface, aliases: hf) |
| Google / Gemini | GOOGLE_API_KEY (หรือ GEMINI_API_KEY) in ~/.hermes/.env (provider: gemini) |
| Google Gemini (OAuth) | hermes model → "Google Gemini (OAuth)" (provider: google-gemini-cli, free tier supported, browser PKCE login) |
| Custom Endpoint | hermes model → choose "Custom endpoint" (saved in config.yaml) |
:::tip Model key alias
ในส่วน model: config คุณสามารถใช้ได้ทั้ง default: หรือ model: เป็นชื่อ key สำหรับ model ID ทั้ง model: { default: my-model } และ model: { model: my-model } ทำงานเหมือนกัน
:::
Google Gemini via OAuth (google-gemini-cli)
provider google-gemini-cli ใช้ backend Cloud Code Assist ของ Google ซึ่งเป็น API เดียวกับที่เครื่องมือ gemini-cli ของ Google ใช้ รองรับทั้ง free tier (โควต้ารายวันจำนวนมากสำหรับบัญชีส่วนตัว) และ paid tiers (Standard/Enterprise ผ่าน GCP project)
Quick start:
hermes model
# → pick "Google Gemini (OAuth)"
# → see policy warning, confirm
# → browser opens to accounts.google.com, sign in
# → done — Hermes auto-provisions your free tier on first requestโดยค่าเริ่มต้น Hermes จะติดตั้ง Google's public gemini-cli desktop OAuth client ซึ่งเป็น credentials เดียวกับที่ Google รวมไว้ใน open-source gemini-cli Desktop OAuth clients ไม่ใช่ confidential (PKCE ให้ความปลอดภัย) คุณไม่จำเป็นต้องติดตั้ง gemini-cli หรือลงทะเบียน Google Cloud OAuth client ของคุณเอง
การทำงานของ auth:
- PKCE Authorization Code flow against
accounts.google.com - Browser callback ที่
http://127.0.0.1:8085/oauth2callback(พร้อม fallback ด้วย ephemeral-port หากไม่ว่าง) - Tokens ถูกเก็บไว้ที่
~/.hermes/auth/google_oauth.json(chmod 0600, atomic write, cross-processfcntllock) - Refresh อัตโนมัติ 60 วินาทีก่อนหมดอายุ
- Headless environments (SSH,
HERMES_HEADLESS=1) → paste-mode fallback - การลดความซ้ำซ้อนในการ refresh ระหว่างการใช้งาน — คำขอพร้อมกันสองครั้งจะไม่ทำการ double-refresh
invalid_grant(refresh ถูกเพิกถอน) → ลบ credential file, แจ้งให้ผู้ใช้ login ใหม่
การทำงานของ inference:
- Traffic ถูกส่งไปยัง
https://cloudcode-pa.googleapis.com/v1internal:generateContent(หรือ:streamGenerateContent?alt=sseสำหรับ streaming), ไม่ใช่ endpointv1beta/openaiแบบเสียเงิน - Request body ถูกห่อด้วย
{project, model, user_prompt_id, request} - OpenAI-shaped
messages[],tools[],tool_choiceถูกแปลเป็นcontents[],tools[].functionDeclarations,toolConfigรูปแบบ native ของ Gemini - Responses ถูกแปลกลับเป็น OpenAI shape เพื่อให้ส่วนที่เหลือของ Hermes ทำงานได้โดยไม่มีการเปลี่ยนแปลง
Tiers & project IDs:
| Your situation | What to do |
|---|---|
| Personal Google account, want free tier | ไม่ต้องทำอะไร - sign in, start chatting |
| Workspace / Standard / Enterprise account | ตั้งค่า HERMES_GEMINI_PROJECT_ID หรือ GOOGLE_CLOUD_PROJECT เป็น GCP project ID ของคุณ |
| VPC-SC-protected org | Hermes ตรวจพบ SECURITY_POLICY_VIOLATED และบังคับใช้ standard-tier โดยอัตโนมัติ |
Free tier จะทำการ auto-provisioning project ที่จัดการโดย Google เมื่อใช้งานครั้งแรก ไม่ต้องตั้งค่า GCP
การตรวจสอบโควต้า:
/gquotaแสดงโควต้า Code Assist ที่เหลือต่อ model พร้อม progress bars:
Gemini Code Assist quota (project: 123-abc)
gemini-2.5-pro ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓░░░░ 85%
gemini-2.5-flash [input] ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓░░ 92%:::warning Policy risk
Google ถือว่าการใช้ Gemini CLI OAuth client กับ third-party software เป็นการละเมิดนโยบาย ผู้ใช้บางรายรายงานว่าบัญชีถูกจำกัด สำหรับประสบการณ์ที่มีความเสี่ยงต่ำที่สุด ให้ใช้ API key ของคุณเองผ่าน provider gemini แทน Hermes จะแสดงคำเตือนล่วงหน้าและต้องการการยืนยันอย่างชัดเจนก่อนที่ OAuth จะเริ่ม
:::
Custom OAuth client (optional):
หากคุณต้องการลงทะเบียน Google OAuth client ของคุณเอง เช่น เพื่อให้โควต้าและ consent ถูกจำกัดอยู่ใน GCP project ของคุณเอง ให้ตั้งค่า:
HERMES_GEMINI_CLIENT_ID=your-client.apps.googleusercontent.com
HERMES_GEMINI_CLIENT_SECRET=... # optional for Desktop clientsลงทะเบียน OAuth client สำหรับ Desktop app ที่ console.cloud.google.com/apis/credentials โดยเปิดใช้งาน Generative Language API
:::info Codex Note
provider OpenAI Codex จะทำการ authenticate ผ่าน device code (เปิด URL, กรอกโค้ด) Hermes จะจัดเก็บ credentials ที่ได้ไว้ใน auth store ของตัวเองที่ ~/.hermes/auth.json และสามารถ import credentials ของ Codex CLI ที่มีอยู่จาก ~/.codex/auth.json ได้เมื่อมีอยู่ ไม่จำเป็นต้องติดตั้ง Codex CLI
:::
:::warning
แม้กระทั่งเมื่อใช้ Nous Portal, Codex, หรือ custom endpoint เครื่องมือบางอย่าง (vision, web summarization, MoA) ก็ใช้ model "auxiliary" แยกต่างหาก - โดยค่าเริ่มต้นคือ Gemini Flash ผ่าน OpenRouter การตั้งค่า OPENROUTER_API_KEY จะเปิดใช้งานเครื่องมือเหล่านี้โดยอัตโนมัติ คุณยังสามารถกำหนดได้ว่าเครื่องมือเหล่านี้ใช้ model และ provider ใด - ดูที่ Auxiliary Models
:::
:::tip Nous Tool Gateway
ผู้ที่สมัครสมาชิก Nous Portal แบบเสียเงินยังสามารถเข้าถึง Tool Gateway ซึ่งรวมถึง web search, image generation, TTS, และ browser automation ที่ถูก route ผ่านการสมัครสมาชิกของคุณ ไม่ต้องใช้ API key เพิ่มเติม โดยจะถูกเสนอโดยอัตโนมัติระหว่างการตั้งค่า hermes model หรือเปิดใช้งานภายหลังด้วย hermes tools
:::
Two Commands for Model Management
Hermes มีคำสั่ง model สอง คำสั่งที่มีวัตถุประสงค์ต่างกัน:
| Command | Where to run | What it does |
|---|---|---|
hermes model | Your terminal (outside any session) | Full setup wizard - เพิ่ม providers, run OAuth, enter API keys, configure endpoints |
/model | Inside a Hermes chat session | Quick switch between already-configured providers and models |
หากคุณพยายามสลับไปใช้ provider ที่คุณยังไม่ได้ตั้งค่า (เช่น คุณตั้งค่าแค่ OpenRouter และต้องการใช้ Anthropic) คุณต้องใช้ hermes model ไม่ใช่ /model ให้ออกจาก session ก่อน (Ctrl+C หรือ /quit), รัน hermes model, ทำการตั้งค่า provider ให้เสร็จสิ้น จากนั้นจึงเริ่ม session ใหม่
Anthropic (Native)
ใช้ Claude models โดยตรงผ่าน Anthropic API - ไม่ต้องผ่าน OpenRouter proxy รองรับ 3 auth methods:
# With an API key (pay-per-token)
export ANTHROPIC_API_KEY=***
hermes chat --provider anthropic --model claude-sonnet-4-6
# Preferred: authenticate through `hermes model`
# Hermes จะใช้ Claude Code's credential store โดยตรงเมื่อมี
hermes model
# Manual override with a setup-token (fallback / legacy)
export ANTHROPIC_TOKEN=*** # setup-token หรือ manual OAuth token
hermes chat --provider anthropic
# Auto-detect Claude Code credentials (if you already use Claude Code)
hermes chat --provider anthropic # อ่านไฟล์ credential ของ Claude Code โดยอัตโนมัติเมื่อคุณเลือก Anthropic OAuth ผ่าน hermes model, Hermes จะชอบใช้ credential store ของ Claude Code เองมากกว่าการคัดลอก token ไปที่ ~/.hermes/.env เพราะนั่นทำให้ credentials ของ Claude ที่สามารถ refresh ได้ยังคงสามารถ refresh ได้
หรือตั้งค่าแบบถาวร:
model:
provider: "anthropic"
default: "claude-sonnet-4-6":::tip Aliases
--provider claude และ --provider claude-code ยังสามารถใช้เป็น shorthand สำหรับ --provider anthropic
:::
GitHub Copilot
Hermes รองรับ GitHub Copilot เป็น first-class provider ด้วยสองโหมด:
copilot - Direct Copilot API (แนะนำ) ใช้การสมัครสมาชิก GitHub Copilot ของคุณเพื่อเข้าถึง GPT-5.x, Claude, Gemini, และ model อื่นๆ ผ่าน Copilot API
hermes chat --provider copilot --model gpt-5.4Authentication options (ตรวจสอบตามลำดับนี้):
COPILOT_GITHUB_TOKENenvironment variableGH_TOKENenvironment variableGITHUB_TOKENenvironment variablegh auth tokenCLI fallback
หากไม่พบ token, hermes model จะเสนอ OAuth device code login ซึ่งเป็น flow เดียวกันที่ใช้โดย Copilot CLI และ opencode
:::warning Token types
Copilot API ไม่รองรับ Personal Access Tokens แบบ classic (ghp_*) Supported token types:
| Type | Prefix | How to get |
|---|---|---|
| OAuth token | gho_ | hermes model → GitHub Copilot → Login with GitHub |
| Fine-grained PAT | github_pat_ | GitHub Settings → Developer settings → Fine-grained tokens (needs Copilot Requests permission) |
| GitHub App token | ghu_ | Via GitHub App installation |
หาก gh auth token ของคุณส่งคืน token แบบ ghp_*, ให้ใช้ hermes model เพื่อ authenticate ผ่าน OAuth แทน
:::
API routing: GPT-5+ models (ยกเว้น gpt-5-mini) จะใช้ Responses API โดยอัตโนมัติ ส่วน model อื่นๆ ทั้งหมด (GPT-4o, Claude, Gemini, etc.) ใช้ Chat Completions Models จะถูก auto-detect จาก Copilot catalog แบบ live
copilot-acp - Copilot ACP agent backend. Spawns Copilot CLI แบบ local เป็น subprocess:
hermes chat --provider copilot-acp --model copilot-acp
# Requires the GitHub Copilot CLI in PATH and an existing `copilot login` sessionPermanent config:
model:
provider: "copilot"
default: "gpt-5.4"| Environment variable | Description |
|---|---|
COPILOT_GITHUB_TOKEN | GitHub token สำหรับ Copilot API (ลำดับความสำคัญแรก) |
HERMES_COPILOT_ACP_COMMAND | Override path ของ Copilot CLI binary (default: copilot) |
HERMES_COPILOT_ACP_ARGS | Override args ของ ACP (default: --acp --stdio) |
First-Class Chinese AI Providers
Provider เหล่านี้มีการรองรับ built-in ด้วย dedicated provider IDs ตั้งค่า API key และใช้ --provider เพื่อเลือก:
# z.ai / ZhipuAI GLM
hermes chat --provider zai --model glm-5
# Requires: GLM_API_KEY in ~/.hermes/.env
# Kimi / Moonshot AI (international: api.moonshot.ai)
hermes chat --provider kimi-coding --model kimi-for-coding
# Requires: KIMI_API_KEY in ~/.hermes/.env
# Kimi / Moonshot AI (China: api.moonshot.cn)
hermes chat --provider kimi-coding-cn --model kimi-k2.5
# Requires: KIMI_CN_API_KEY in ~/.hermes/.env
# MiniMax (global endpoint)
hermes chat --provider minimax --model MiniMax-M2.7
# Requires: MINIMAX_API_KEY in ~/.hermes/.env
# MiniMax (China endpoint)
hermes chat --provider minimax-cn --model MiniMax-M2.7
# Requires: MINIMAX_CN_API_KEY in ~/.hermes/.env
# Alibaba Cloud / DashScope (Qwen models)
hermes chat --provider alibaba --model qwen3.5-plus
# Requires: DASHSCOPE_API_KEY in ~/.hermes/.env
# Xiaomi MiMo
hermes chat --provider xiaomi --model mimo-v2-pro
# Requires: XIAOMI_API_KEY in ~/.hermes/.env
# Arcee AI (Trinity models)
hermes chat --provider arcee --model trinity-large-thinking
# Requires: ARCEEAI_API_KEY in ~/.hermes/.envหรือตั้งค่า provider แบบถาวรใน config.yaml:
model:
provider: "zai" # or: kimi-coding, kimi-coding-cn, minimax, minimax-cn, alibaba, xiaomi, arcee
default: "glm-5"Base URLs สามารถถูก override ด้วย environment variables GLM_BASE_URL, KIMI_BASE_URL, MINIMAX_BASE_URL, MINIMAX_CN_BASE_URL, DASHSCOPE_BASE_URL, หรือ XIAOMI_BASE_URL
:::note Z.AI Endpoint Auto-Detection
เมื่อใช้ provider Z.AI / GLM, Hermes จะทำการ probe multiple endpoints (global, China, coding variants) โดยอัตโนมัติเพื่อค้นหา endpoint ที่ยอมรับ API key ของคุณ คุณไม่จำเป็นต้องตั้งค่า GLM_BASE_URL ด้วยตนเอง - endpoint ที่ใช้งานได้จะถูกตรวจพบและแคชโดยอัตโนมัติ
:::
xAI (Grok) - Responses API + Prompt Caching
xAI เชื่อมต่อผ่าน Responses API (codex_responses transport) สำหรับการสนับสนุนการให้เหตุผลอัตโนมัติบน Grok 4 models - ไม่จำเป็นต้องใช้ parameter reasoning_effort, server จะให้เหตุผลโดยค่าเริ่มต้น ตั้งค่า XAI_API_KEY ใน ~/.hermes/.env และเลือก xAI ใน hermes model, หรือใช้ grok เป็น shortcut ใน /model grok-4-1-fast-reasoning
เมื่อใช้ xAI เป็น provider (any base URL ที่มี x.ai), Hermes จะเปิดใช้งาน prompt caching โดยอัตโนมัติโดยการส่ง header x-grok-conv-id ไปพร้อมกับทุก API request สิ่งนี้จะ route requests ไปยัง server เดียวกันภายใน session การสนทนา ทำให้โครงสร้างพื้นฐานของ xAI สามารถนำ system prompts และ conversation history ที่ถูกแคชกลับมาใช้ใหม่ได้
ไม่จำเป็นต้องตั้งค่า - caching จะเปิดใช้งานโดยอัตโนมัติเมื่อตรวจพบ xAI endpoint และมี session ID การทำเช่นนี้ช่วยลด latency และ cost สำหรับการสนทนาแบบ multi-turn
xAI ยังมี dedicated TTS endpoint (/v1/tts) เลือก xAI TTS ใน hermes tools → Voice & TTS, หรือดูที่ Voice & TTS สำหรับการตั้งค่า
Ollama Cloud - Managed Ollama Models, OAuth + API Key
Ollama Cloud เป็นที่โฮสต์ catalog open-weight เดียวกับ Ollama local แต่ไม่มีข้อกำหนดเรื่อง GPU เลือกใน hermes model เป็น Ollama Cloud, วาง API key ของคุณจาก ollama.com/settings/keys, และ Hermes จะ auto-discover models ที่มีอยู่
hermes model
# → pick "Ollama Cloud"
# → paste your OLLAMA_API_KEY
# → select from discovered models (gpt-oss:120b, glm-4.6:cloud, qwen3-coder:480b-cloud, etc.)หรือใน config.yaml โดยตรง:
model:
provider: "ollama-cloud"
default: "gpt-oss:120b"Model catalog จะถูกดึงมาแบบ dynamic จาก ollama.com/v1/models และแคชไว้เป็นเวลาหนึ่งชั่วโมง การใช้ notation model:tag (เช่น qwen3-coder:480b-cloud) จะถูกรักษาไว้ผ่าน normalization - ห้ามใช้ dashes
:::tip Ollama Cloud vs local Ollama
ทั้งคู่ใช้ OpenAI-compatible API เดียวกัน Cloud เป็น first-class provider (--provider ollama-cloud, OLLAMA_API_KEY); Ollama local เข้าถึงผ่าน Custom Endpoint flow (base URL http://localhost:11434/v1, no key) ใช้ cloud สำหรับ large models ที่คุณไม่สามารถรันได้ local; ใช้ local สำหรับความเป็นส่วนตัวหรือการทำงานแบบ offline
:::
AWS Bedrock
Anthropic Claude, Amazon Nova, DeepSeek v3.2, Meta Llama 4, และ model อื่นๆ ผ่าน AWS Bedrock ใช้ credential chain ของ AWS SDK (boto3) - ไม่ต้องใช้ API key, ใช้แค่ standard AWS auth
# Simplest - named profile in ~/.aws/credentials
hermes chat --provider bedrock --model us.anthropic.claude-sonnet-4-6
# Or with explicit env vars
AWS_PROFILE=myprofile AWS_REGION=us-east-1 hermes chat --provider bedrock --model us.anthropic.claude-sonnet-4-6หรือแบบถาวรใน config.yaml:
model:
provider: "bedrock"
default: "us.anthropic.claude-sonnet-4-6"
bedrock:
region: "us-east-1" # or set AWS_REGION
# profile: "myprofile" # or set AWS_PROFILE
# discovery: true # auto-discover region from IAM
# guardrail: # optional Bedrock Guardrails
# id: "your-guardrail-id"
# version: "DRAFT"การ authenticate ใช้ standard boto3 chain: AWS_ACCESS_KEY_ID/AWS_SECRET_ACCESS_KEY ที่ชัดเจน, AWS_PROFILE จาก ~/.aws/credentials, IAM role บน EC2/ECS/Lambda, IMDS, หรือ SSO ไม่จำเป็นต้องมี env var หากคุณ authenticated ด้วย AWS CLI อยู่แล้ว
Bedrock ใช้ Converse API ภายใต้ hood - requests จะถูกแปลเป็น model-agnostic shape ของ Bedrock ดังนั้น config เดียวกันจึงใช้ได้กับ Claude, Nova, DeepSeek, และ Llama models ตั้งค่า BEDROCK_BASE_URL เฉพาะเมื่อคุณเรียกใช้ non-default regional endpoint
ดูที่ AWS Bedrock guide สำหรับการแนะนำการตั้งค่า IAM, การเลือก region, และ cross-region inference
Qwen Portal (OAuth)
Qwen Portal ของ Alibaba พร้อมการ login แบบ OAuth ผ่าน browser เลือก Qwen OAuth (Portal) ใน hermes model, sign in ผ่าน browser, และ Hermes จะเก็บ refresh token ไว้
hermes model
# → pick "Qwen OAuth (Portal)"
# → browser opens; sign in with your Alibaba account
# → confirm — credentials are saved to ~/.hermes/auth.json
hermes chat # uses portal.qwen.ai/v1 endpointหรือตั้งค่า config.yaml:
model:
provider: "qwen-oauth"
default: "qwen3-coder-plus"ตั้งค่า HERMES_QWEN_BASE_URL เฉพาะเมื่อ portal endpoint ย้ายที่ (default: https://portal.qwen.ai/v1)
:::tip Qwen OAuth vs DashScope (Alibaba)
qwen-oauth ใช้ Qwen Portal ที่เปิดให้ผู้บริโภคใช้พร้อม OAuth login - เหมาะสำหรับผู้ใช้รายบุคคล provider alibaba ใช้ enterprise API ของ DashScope พร้อม DASHSCOPE_API_KEY - เหมาะสำหรับ workload แบบ programmatic / production ทั้งคู่ route ไปยัง Qwen-family models แต่ใช้ endpoint ต่างกัน
:::
NVIDIA NIM
Nemotron และ model open source อื่นๆ ผ่าน build.nvidia.com (free API key) หรือ local NIM endpoint
# Cloud (build.nvidia.com)
hermes chat --provider nvidia --model nvidia/nemotron-3-super-120b-a12b
# Requires: NVIDIA_API_KEY in ~/.hermes/.env
# Local NIM endpoint - override base URL
NVIDIA_BASE_URL=http://localhost:8000/v1 hermmes chat --provider nvidia --model nvidia/nemotron-3-super-120b-a12bหรือตั้งค่าแบบถาวรใน config.yaml:
model:
provider: "nvidia"
default: "nvidia/nemotron-3-super-120b-a12b":::tip Local NIM
สำหรับการ deploy on-prem (DGX Spark, local GPU), ตั้งค่า NVIDIA_BASE_URL=http://localhost:8000/v1 NIM เปิดใช้งาน OpenAI-compatible chat completions API เดียวกับ build.nvidia.com ดังนั้นการสลับระหว่าง cloud และ local เป็นการเปลี่ยน env-var บรรทัดเดียว
:::
Hugging Face Inference Providers
Hugging Face Inference Providers route ไปยัง 20+ open models ผ่าน unified OpenAI-compatible endpoint (router.huggingface.co/v1) Requests จะถูก route ไปยัง backend ที่เร็วที่สุดที่มีอยู่โดยอัตโนมัติ (Groq, Together, SambaNova, etc.) พร้อม failover อัตโนมัติ
# Use any available model
hermes chat --provider huggingface --model Qwen/Qwen3-235B-A22B-Thinking-2507
# Requires: HF_TOKEN in ~/.hermes/.env
# Short alias
hermes chat --provider hf --model deepseek-ai/DeepSeek-V3.2หรือตั้งค่าแบบถาวรใน config.yaml:
model:
provider: "huggingface"
default: "Qwen/Qwen3-235B-A22B-Thinking-2507"รับ token ของคุณได้ที่ huggingface.co/settings/tokens - ตรวจสอบให้แน่ใจว่าได้เปิดใช้งานสิทธิ์ "Make calls to Inference Providers" แล้ว Free tier รวมอยู่ด้วย ($0.10/month credit, no markup on provider rates).
คุณสามารถ append routing suffixes ให้กับ model names: :fastest (default), :cheapest, หรือ :provider_name เพื่อบังคับใช้ backend ที่เฉพาะเจาะจง
Base URL สามารถถูก override ด้วย HF_BASE_URL
Custom & Self-Hosted LLM Providers
Hermes Agent ทำงานกับ any OpenAI-compatible API endpoint ไม่ว่าจะเป็นที่ใดก็ตาม หากเซิร์ฟเวอร์มีการติดตั้ง /v1/chat/completions คุณสามารถชี้ Hermes ไปที่ Endpoint นั้นได้ ซึ่งหมายความว่าคุณสามารถใช้ local models, GPU inference servers, multi-provider routers, หรือ any third-party API ก็ได้
General Setup
สามวิธีในการตั้งค่า custom endpoint:
Interactive setup (recommended):
hermes model
# Select "Custom endpoint (self-hosted / VLLM / etc.)"
# Enter: API base URL, API key, Model nameManual config (config.yaml):
# In ~/.hermes/config.yaml
model:
default: your-model-name
provider: custom
base_url: http://localhost:8000/v1
api_key: your-key-or-leave-empty-for-local:::warning Legacy env vars
OPENAI_BASE_URL และ LLM_MODEL ใน .env ถูก ลบออกแล้ว ไม่ส่วนใดของ Hermes อ่านค่าเหล่านี้ - config.yaml คือแหล่งข้อมูลหลัก (single source of truth) สำหรับการตั้งค่า model และ endpoint หากคุณมีข้อมูลที่ล้าสมัย (stale entries) ใน .env ระบบจะล้างข้อมูลเหล่านั้นโดยอัตโนมัติในการรัน hermes setup ครั้งถัดไป หรือเมื่อมีการย้าย config ใช้ hermes model หรือแก้ไข config.yaml โดยตรง
:::
ทั้งสองวิธีนี้จะบันทึกข้อมูลลงใน config.yaml ซึ่งเป็นแหล่งข้อมูลหลักสำหรับ model, provider, และ base URL
Switching Models with /model
:::warning hermes model vs /model
hermes model (รันจาก terminal ของคุณ, นอกเหนือจาก session แชทใดๆ) คือ ตัวช่วยตั้งค่า provider แบบเต็มรูปแบบ (full provider setup wizard) ใช้สิ่งนี้เพื่อเพิ่ม provider ใหม่, รัน OAuth flows, กรอก API keys, และตั้งค่า custom endpoints
/model (พิมพ์ภายใน session แชท Hermes ที่กำลังทำงานอยู่) สามารถใช้ได้เพียง สลับระหว่าง providers และ models ที่คุณตั้งค่าไว้แล้วเท่านั้น มันไม่สามารถเพิ่ม provider ใหม่, รัน OAuth, หรือแจ้งให้กรอก API keys ได้ หากคุณตั้งค่า provider เพียงตัวเดียว (เช่น OpenRouter), /model จะแสดงเฉพาะ models สำหรับ provider นั้นเท่านั้น
ในการเพิ่ม provider ใหม่: ออกจาก session ของคุณ (Ctrl+C หรือ /quit), รัน hermes model, ตั้งค่า provider ใหม่, จากนั้นจึงเริ่ม session ใหม่
:::
เมื่อคุณตั้งค่า custom endpoint อย่างน้อยหนึ่งตัวแล้ว คุณสามารถสลับ models ระหว่าง session ได้:
/model custom:qwen-2.5 # สลับไปใช้ model บน custom endpoint ของคุณ
/model custom # ตรวจจับ model อัตโนมัติจาก endpoint
/model openrouter:claude-sonnet-4 # สลับกลับไปใช้ cloud providerหากคุณมีการตั้งค่า custom providers ที่มีชื่อ (named custom providers) (ดูด้านล่าง), ให้ใช้ไวยากรณ์แบบสามส่วน (triple syntax):
/model custom:local:qwen-2.5 # ใช้ custom provider "local" กับ model qwen-2.5
/model custom:work:llama3 # ใช้ custom provider "work" กับ model llama3เมื่อสลับ providers, Hermes จะบันทึก base URL และ provider ลงใน config เพื่อให้การเปลี่ยนแปลงคงอยู่แม้จะมีการรีสตาร์ท เมื่อสลับออกจาก custom endpoint ไปยัง built-in provider, base URL ที่ล้าสมัยจะถูกล้างโดยอัตโนมัติ
:::tip
/model custom (เปล่า, ไม่มีชื่อ model) จะเรียกใช้ API /models ของ endpoint ของคุณ และจะเลือก model โดยอัตโนมัติหากมีการโหลด model เพียงตัวเดียว มีประโยชน์สำหรับ local servers ที่รัน model ตัวเดียว
:::
ทุกอย่างที่อยู่ด้านล่างนี้ทำตามรูปแบบเดียวกัน - เพียงแค่เปลี่ยน URL, key, และ model name
Ollama - Local Models, Zero Config
Ollama รัน open-weight models แบบ local ด้วยคำสั่งเดียว เหมาะสำหรับ: การทดลอง local อย่างรวดเร็ว, งานที่ต้องการความเป็นส่วนตัว, การใช้งานแบบ offline รองรับ tool calling ผ่าน OpenAI-compatible API
# Install and run a model
ollama pull qwen2.5-coder:32b
ollama serve # Starts on port 11434จากนั้นตั้งค่า Hermes:
hermes model
# Select "Custom endpoint (self-hosted / VLLM / etc.)"
# Enter URL: http://localhost:11434/v1
# Skip API key (Ollama ไม่ต้องการ)
# Enter model name (เช่น qwen2.5-coder:32b)หรือตั้งค่า config.yaml โดยตรง:
model:
default: qwen2.5-coder:32b
provider: custom
base_url: http://localhost:11434/v1
context_length: 32768 # ดู warning ด้านล่าง:::caution Ollama defaults to very low context lengths Ollama จะไม่ใช้ context window เต็มของ model ของคุณโดยค่าเริ่มต้น ขึ้นอยู่กับ VRAM ของคุณ ค่าเริ่มต้นคือ:
| Available VRAM | Default context |
|---|---|
| Less than 24 GB | 4,096 tokens |
| 24–48 GB | 32,768 tokens |
| 48+ GB | 256,000 tokens |
สำหรับการใช้งาน agent พร้อม tools, คุณต้องการ context อย่างน้อย 16k–32k ที่ 4k, system prompt + tool schemas เพียงอย่างเดียวก็สามารถเติมเต็ม window ได้แล้ว โดยไม่เหลือที่ว่างสำหรับการสนทนา
วิธีเพิ่มค่า (เลือกอย่างใดอย่างหนึ่ง):
# Option 1: ตั้งค่า server-wide ผ่าน environment variable (recommended)
OLLAMA_CONTEXT_LENGTH=32768 ollama serve
# Option 2: สำหรับ Ollama ที่จัดการโดย systemd
sudo systemctl edit ollama.service
# Add: Environment="OLLAMA_CONTEXT_LENGTH=32768"
# Then: sudo systemctl daemon-reload && sudo systemctl restart ollama
# Option 3: ฝังค่าลงใน custom model (persistent per-model)
echo -e "FROM qwen2.5-coder:32b\nPARAMETER num_ctx 32768" > Modelfile
ollama create qwen2.5-coder-32k -f Modelfileคุณไม่สามารถตั้งค่า context length ผ่าน OpenAI-compatible API (/v1/chat/completions) ได้ มันต้องถูกตั้งค่าที่ฝั่ง server หรือผ่าน Modelfile นี่คือสาเหตุอันดับ 1 ของความสับสนเมื่อรวม Ollama เข้ากับ tools อย่าง Hermes
:::
ตรวจสอบว่า context ของคุณถูกตั้งค่าอย่างถูกต้อง:
ollama ps
# ดูที่คอลัมน์ CONTEXT - ควรแสดงค่าที่คุณตั้งค่าไว้:::tip
ดู models ที่มีให้ใช้ด้วย ollama list ดึง model ใดๆ จาก Ollama library ด้วย ollama pull <model> Ollama จัดการ GPU offloading โดยอัตโนมัติ - ไม่ต้องตั้งค่าสำหรับส่วนใหญ่
:::
vLLM - High-Performance GPU Inference
vLLM คือมาตรฐานสำหรับการให้บริการ LLM ในระดับ production เหมาะสำหรับ: maximum throughput บน GPU hardware, การให้บริการ large models, continuous batching
pip install vllm
vllm serve meta-llama/Llama-3.1-70B-Instruct \
--port 8000 \
--max-model-len 65536 \
--tensor-parallel-size 2 \
--enable-auto-tool-choice \
--tool-call-parser hermesจากนั้นตั้งค่า Hermes:
hermes model
# Select "Custom endpoint (self-hosted / VLLM / etc.)"
# Enter URL: http://localhost:8000/v1
# Skip API key (หรือกรอกถ้าคุณตั้งค่า vLLM ด้วย --api-key)
# Enter model name: meta-llama/Llama-3.1-70B-InstructContext length: vLLM จะอ่าน max_position_embeddings ของ model โดยค่าเริ่มต้น หากค่านี้เกินหน่วยความจำ GPU ของคุณ, มันจะเกิดข้อผิดพลาดและแจ้งให้คุณตั้งค่า --max-model-len ให้ต่ำลง คุณยังสามารถใช้ --max-model-len auto เพื่อค้นหาค่าสูงสุดที่เหมาะสมได้ ตั้งค่า --gpu-memory-utilization 0.95 (ค่าเริ่มต้น 0.9) เพื่อบีบ context ให้ได้มากที่สุดใน VRAM
Tool calling ต้องใช้ flags อย่างชัดเจน:
| Flag | Purpose |
|---|---|
--enable-auto-tool-choice | จำเป็นสำหรับ tool_choice: "auto" (ค่า default ใน Hermes) |
--tool-call-parser <name> | Parser สำหรับรูปแบบ tool call ของ model |
Supported parsers: hermes (Qwen 2.5, Hermes 2/3), llama3_json (Llama 3.x), mistral, deepseek_v3, deepseek_v31, xlam, pythonic หากไม่มี flags เหล่านี้, tool calls จะไม่ทำงาน - model จะ output tool calls เป็น text
:::tip
vLLM รองรับขนาดที่มนุษย์อ่านได้: --max-model-len 64k (k ตัวพิมพ์เล็ก = 1000, K ตัวพิมพ์ใหญ่ = 1024)
:::
SGLang - Fast Serving with RadixAttention
SGLang เป็นทางเลือกแทน vLLM ที่ใช้ RadixAttention สำหรับการนำ KV cache กลับมาใช้ใหม่ เหมาะสำหรับ: การสนทนาหลายรอบ (prefix caching), constrained decoding, structured output
pip install "sglang[all]"
python -m sglang.launch_server \
--model meta-llama/Llama-3.1-70B-Instruct \
--port 30000 \
--context-length 65536 \
--tp 2 \
--tool-call-parser qwenจากนั้นตั้งค่า Hermes:
hermes model
# Select "Custom endpoint (self-hosted / VLLM / etc.)"
# Enter URL: http://localhost:30000/v1
# Enter model name: meta-llama/Llama-3.1-70B-InstructContext length: SGLang จะอ่านจาก config ของ model โดยค่าเริ่มต้น ใช้ --context-length เพื่อ override หากคุณต้องการเกินค่าสูงสุดที่ model ประกาศไว้, ให้ตั้งค่า SGLANG_ALLOW_OVERWRITE_LONGER_CONTEXT_LEN=1
Tool calling: ใช้ --tool-call-parser ด้วย parser ที่เหมาะสมสำหรับ family ของ model ของคุณ: qwen (Qwen 2.5), llama3, llama4, deepseekv3, mistral, glm หากไม่มี flag นี้, tool calls จะกลับมาเป็น plain text
:::caution SGLang defaults to 128 max output tokens
หากคำตอบดูเหมือนถูกตัดทอน, ให้เพิ่ม max_tokens ใน requests ของคุณ หรือตั้งค่า --default-max-tokens บน server ค่า default ของ SGLang คือ 128 tokens ต่อ response หากไม่ได้ระบุใน request
:::
llama.cpp / llama-server - CPU & Metal Inference
llama.cpp รัน quantized models บน CPU, Apple Silicon (Metal), และ consumer GPUs เหมาะสำหรับ: การรัน models โดยไม่มี datacenter GPU, ผู้ใช้ Mac, edge deployment
# Build and start llama-server
cmake -B build && cmake --build build --config Release
./build/bin/llama-server \
--jinja -fa \
-c 32768 \
-ngl 99 \
-m models/qwen2.5-coder-32b-instruct-Q4_K_M.gguf \
--port 8080 --host 0.0.0.0Context length (-c): การ build ล่าสุด default เป็น 0 ซึ่งจะอ่าน context ของการฝึกจาก metadata ของ GGUF สำหรับ models ที่มี context การฝึก 128k+ การทำเช่นนี้อาจเกิด OOM เมื่อพยายามจัดสรร KV cache ทั้งหมด ให้ตั้งค่า -c อย่างชัดเจนตามที่คุณต้องการ (32k–64k เป็นช่วงที่ดีสำหรับการใช้งาน agent) หากใช้ parallel slots (-np), context รวมจะถูกแบ่งระหว่าง slots - ด้วย -c 32768 -np 4, แต่ละ slot จะได้เพียง 8k
จากนั้นตั้งค่า Hermes ให้ชี้ไปที่มัน:
hermes model
# Select "Custom endpoint (self-hosted / VLLM / etc.)"
# Enter URL: http://localhost:8080/v1
# Skip API key (local servers ไม่ต้องการ)
# Enter model name - หรือปล่อยว่างเพื่อตรวจจับอัตโนมัติหากโหลด model เพียงตัวเดียวสิ่งนี้จะบันทึก endpoint ลงใน config.yaml เพื่อให้คงอยู่ข้าม session
:::caution --jinja จำเป็นสำหรับการทำ tool calling
หากไม่มี --jinja, llama-server จะเพิกเฉยต่อพารามิเตอร์ tools โดยสิ้นเชิง model จะพยายามเรียกใช้ tools โดยการเขียน JSON ใน response text ของมัน แต่ Hermes จะไม่รับรู้ว่ามันคือ tool call - คุณจะเห็น raw JSON เช่น {"name": "web_search", ...} ถูกพิมพ์เป็น message แทนการค้นหาจริง
Native tool calling support (best performance): Llama 3.x, Qwen 2.5 (รวมถึง Coder), Hermes 2/3, Mistral, DeepSeek, Functionary. models อื่นๆ ใช้ generic handler ที่ใช้งานได้แต่ประสิทธิภาพอาจต่ำกว่า ดู llama.cpp function calling docs สำหรับรายการทั้งหมด
คุณสามารถตรวจสอบว่า tool support ทำงานอยู่หรือไม่ โดยการตรวจสอบ http://localhost:8080/props - field chat_template ควรปรากฏอยู่
:::
:::tip ดาวน์โหลด GGUF models จาก Hugging Face การควอนไทซ์ Q4_K_M ให้ความสมดุลที่ดีที่สุดระหว่างคุณภาพกับการใช้หน่วยความจำ :::
LM Studio - Desktop App with Local Models
LM Studio คือ desktop app สำหรับรัน local models ด้วย GUI เหมาะสำหรับ: ผู้ใช้ที่ชอบ visual interface, การทดสอบ model อย่างรวดเร็ว, developers บน macOS/Windows/Linux
เริ่ม server จากแอป LM Studio (Developer tab → Start Server), หรือใช้ CLI:
lms server start # Starts on port 1234
lms load qwen2.5-coder --context-length 32768จากนั้นตั้งค่า Hermes:
hermes model
# Select "Custom endpoint (self-hosted / VLLM / etc.)"
# Enter URL: http://localhost:1234/v1
# Skip API key (LM Studio ไม่ต้องการ)
# Enter model name:::caution Context length often defaults to 2048 LM Studio จะอ่าน context length จาก metadata ของ model แต่ GGUF models หลายตัวรายงานค่า default ที่ต่ำ (2048 หรือ 4096) ควรตั้งค่า context length อย่างชัดเจน ในการตั้งค่า model ของ LM Studio:
- คลิกที่ไอคอนรูปเฟืองถัดจาก model picker
- ตั้งค่า "Context Length" เป็นอย่างน้อย 16384 (แนะนำ 32768)
- โหลด model ใหม่เพื่อให้การเปลี่ยนแปลงมีผล
หรือใช้ CLI: lms load model-name --context-length 32768
ในการตั้งค่า default แบบ persistent ต่อ model: ไปที่ My Models tab → ไอคอนรูปเฟืองบน model → ตั้งค่าขนาด context :::
Tool calling: รองรับตั้งแต่ LM Studio 0.3.6 Models ที่มีการฝึก tool-calling แบบ native (Qwen 2.5, Llama 3.x, Mistral, Hermes) จะถูกตรวจจับอัตโนมัติและแสดงพร้อม tool badge models อื่นๆ ใช้ generic fallback ที่อาจไม่น่าเชื่อถือเท่า
WSL2 Networking (Windows Users)
เนื่องจาก Hermes Agent ต้องการสภาพแวดล้อมแบบ Unix, ผู้ใช้ Windows จึงต้องรันมันภายใน WSL2 หาก model server ของคุณ (Ollama, LM Studio, etc.) รันอยู่บน Windows host, คุณจำเป็นต้องเชื่อมช่องว่างเครือข่าย - WSL2 ใช้ virtual network adapter ที่มี subnet ของตัวเอง ดังนั้น localhost ภายใน WSL2 จะหมายถึง Linux VM, ไม่ใช่ Windows host
:::tip Both in WSL2? No problem.
หาก model server ของคุณรันอยู่ภายใน WSL2 ด้วย (พบบ่อยสำหรับ vLLM, SGLang, และ llama-server), localhost จะทำงานได้ตามปกติ - พวกมันแชร์ network namespace เดียวกัน ข้ามส่วนนี้ไปได้เลย
:::
Option 1: Mirrored Networking Mode (Recommended)
มีให้ใช้บน Windows 11 22H2+, mirrored mode ทำให้ localhost ทำงานได้สองทิศทางระหว่าง Windows และ WSL2 - เป็นวิธีแก้ไขที่ง่ายที่สุด
-
สร้างหรือแก้ไข
%USERPROFILE%\.wslconfig(เช่นC:\Users\YourName\.wslconfig):[wsl2] networkingMode=mirrored -
รีสตาร์ท WSL จาก PowerShell:
wsl --shutdown -
เปิด terminal WSL2 ของคุณใหม่
localhostตอนนี้จะเข้าถึงบริการของ Windows ได้:curl http://localhost:11434/v1/models # Ollama บน Windows - ใช้งานได้
:::note Hyper-V Firewall
บน Windows 11 build บางตัว, firewall ของ Hyper-V จะบล็อก mirrored connections โดยค่า default หาก localhost ยังไม่ทำงานหลังจากเปิด mirrored mode, ให้รันคำสั่งนี้ใน Admin PowerShell:
Set-NetFirewallHyperVVMSetting -Name '{40E0AC32-46A5-438A-A0B2-2B479E8F2E90}' -DefaultInboundAction Allow:::
Option 2: Use the Windows Host IP (Windows 10 / older builds)
หากคุณไม่สามารถใช้ mirrored mode ได้, ให้หา Windows host IP จากภายใน WSL2 และใช้ IP นั้นแทน localhost:
# Get the Windows host IP (the default gateway of WSL2's virtual network)
ip route show | grep -i default | awk '{ print $3 }'
# ตัวอย่าง output: 172.29.192.1ใช้ IP นั้นใน config Hermes ของคุณ:
model:
default: qwen2.5-coder:32b
provider: custom
base_url: http://172.29.192.1:11434/v1 # Windows host IP, ไม่ใช่ localhost:::tip Dynamic helper Host IP สามารถเปลี่ยนได้เมื่อ WSL2 restart คุณสามารถดึงมันแบบ dynamic ใน shell ของคุณ:
export WSL_HOST=$(ip route show | grep -i default | awk '{ print $3 }')
echo "Windows host at: $WSL_HOST"
curl http://$WSL_HOST:11434/v1/models # Test Ollamaหรือใช้ mDNS name ของเครื่องคุณ (ต้องติดตั้ง libnss-mdns ใน WSL2):
sudo apt install libnss-mdns
curl http://$(hostname).local:11434/v1/models:::
Server Bind Address (Required for NAT Mode)
หากคุณใช้ Option 2 (NAT mode ด้วย host IP), model server บน Windows ต้องยอมรับการเชื่อมต่อจากภายนอก 127.0.0.1 โดยค่า default, server ส่วนใหญ่จะฟังแค่บน localhost - การเชื่อมต่อ WSL2 ใน NAT mode มาจาก virtual subnet ที่แตกต่างกันและจะถูกปฏิเสธ ใน mirrored mode, localhost จะแมปโดยตรง ทำให้การ binding 127.0.0.1 default ทำงานได้ดี
| Server | Default bind | How to fix |
|---|---|---|
| Ollama | 127.0.0.1 | ตั้งค่า OLLAMA_HOST=0.0.0.0 environment variable ก่อนเริ่ม Ollama (System Settings → Environment Variables บน Windows, หรือแก้ไข Ollama service) |
| LM Studio | 127.0.0.1 | เปิด "Serve on Network" ใน Developer tab → Server settings |
| llama-server | 127.0.0.1 | เพิ่ม --host 0.0.0.0 ในคำสั่ง startup |
| vLLM | 0.0.0.0 | Bind ไปยังทุก interface โดย default อยู่แล้ว |
| SGLang | 127.0.0.1 | เพิ่ม --host 0.0.0.0 ในคำสั่ง startup |
Ollama on Windows (detailed): Ollama รันเป็น Windows service. ในการตั้งค่า OLLAMA_HOST:
- เปิด System Properties → Environment Variables
- เพิ่ม System variable ใหม่:
OLLAMA_HOST=0.0.0.0 - รีสตาร์ท Ollama service (หรือ reboot)
Windows Firewall
Windows Firewall ถือว่า WSL2 เป็น network แยก (ทั้งใน NAT และ mirrored mode) หากการเชื่อมต่อยังล้มเหลวหลังจากขั้นตอนข้างต้น, ให้เพิ่ม firewall rule สำหรับ port ของ model server ของคุณ:
# รันใน Admin PowerShell - แทนที่ PORT ด้วย port ของ server ของคุณ
New-NetFirewallRule -DisplayName "Allow WSL2 to Model Server" -Direction Inbound -Action Allow -Protocol TCP -LocalPort 11434Common ports: Ollama 11434, vLLM 8000, SGLang 30000, llama-server 8080, LM Studio 1234.
Quick Verification
จากภายใน WSL2, ทดสอบว่าคุณสามารถเข้าถึง model server ของคุณได้:
# แทนที่ URL ด้วย address และ port ของ server ของคุณ
curl http://localhost:11434/v1/models # Mirrored mode
curl http://172.29.192.1:11434/v1/models # NAT mode (ใช้ host IP จริงของคุณ)หากคุณได้รับ JSON response ที่แสดงรายการ models ของคุณ, คุณก็พร้อมแล้ว ใช้ URL เดียวกันนั้นเป็น base_url ใน config Hermes ของคุณ
Troubleshooting Local Models
ปัญหาเหล่านี้ส่งผลกับ ทุก local inference servers เมื่อใช้กับ Hermes
"Connection refused" จาก WSL2 ไปยัง model server ที่โฮสต์บน Windows
หากคุณรัน Hermes ภายใน WSL2 และ model server ของคุณอยู่บน Windows host, http://localhost:<port> จะไม่ทำงานใน default NAT networking mode ของ WSL2 ดูที่ WSL2 Networking ด้านบนเพื่อดูวิธีแก้ไข
Tool calls ปรากฏเป็น text แทนการทำงาน
model output สิ่งที่คล้ายกับ {"name": "web_search", "arguments": {...}} เป็น message แทนการเรียกใช้ tool จริงๆ
สาเหตุ: server ของคุณไม่ได้เปิดใช้งาน tool calling, หรือ model ไม่รองรับมันผ่าน tool calling implementation ของ server
| Server | Fix |
|---|---|
| llama.cpp | เพิ่ม --jinja ในคำสั่ง startup |
| vLLM | เพิ่ม --enable-auto-tool-choice --tool-call-parser hermes |
| SGLang | เพิ่ม --tool-call-parser qwen (หรือ appropriate parser) |
| Ollama | Tool calling เปิดใช้งานโดย default - ตรวจสอบให้แน่ใจว่า model ของคุณรองรับมัน (ตรวจสอบด้วย ollama show model-name) |
| LM Studio | อัปเดตเป็น 0.3.6+ และใช้ model ที่มีการฝึก tool support แบบ native |
Model ดูเหมือนจะลืม context หรือให้คำตอบที่ไม่สอดคล้องกัน
สาเหตุ: Context window มีขนาดเล็กเกินไป เมื่อการสนทนาเกินขีดจำกัด context, server ส่วนใหญ่จะ drop messages เก่าๆ โดยเงียบๆ system prompt + tool schemas ของ Hermes เพียงอย่างเดียวสามารถใช้ 4k–8k tokens ได้
Diagnosis:
# ตรวจสอบว่า Hermes คิดว่า context คืออะไร
# ดูที่บรรทัด startup: "Context limit: X tokens"
# ตรวจสอบ context จริงของ server ของคุณ
# Ollama: ollama ps (คอลัมน์ CONTEXT)
# llama.cpp: curl http://localhost:8080/props | jq '.default_generation_settings.n_ctx'
# vLLM: ตรวจสอบ --max-model-len ใน startup argsFix: ตั้งค่า context เป็นอย่างน้อย 32,768 tokens สำหรับการใช้งาน agent ดูส่วนของ server แต่ละตัวด้านบนสำหรับ flag ที่เฉพาะเจาะจง
"Context limit: 2048 tokens" ตอน startup
Hermes ตรวจจับ context length จาก endpoint /v1/models ของ server ของคุณ หาก server รายงานค่าต่ำ (หรือไม่รายงานเลย), Hermes จะใช้ขีดจำกัดที่ model ประกาศ ซึ่งอาจผิดพลาด
Fix: ตั้งค่าอย่างชัดเจนใน config.yaml:
model:
default: your-model
provider: custom
base_url: http://localhost:11434/v1
context_length: 32768Responses get cut off mid-sentence
Possible causes:
- Low output cap (
max_tokens) บน server - SGLang default เป็น 128 tokens ต่อ response. ตั้งค่า--default-max-tokensบน server หรือกำหนดค่าmodel.max_tokensใน config.yaml ของ Hermes หมายเหตุ:max_tokensควบคุมความยาว response เท่านั้น - มันไม่เกี่ยวข้องกับว่าประวัติการสนทนาของคุณสามารถยาวได้แค่ไหน (นั่นคือcontext_length) - Context exhaustion - model เติมเต็ม context window ของมันแล้ว เพิ่ม
model.context_lengthหรือเปิดใช้งาน context compression ใน Hermes
LiteLLM Proxy — Multi-Provider Gateway
LiteLLM คือ proxy ที่รองรับ OpenAI-compatible ที่รวม 100+ LLM providers ไว้เบื้องหลัง API เดียว เหมาะสำหรับ: การสลับระหว่าง providers โดยไม่ต้องเปลี่ยน config, load balancing, fallback chains, budget controls
# Install and start
pip install "litellm[proxy]"
litellm --model anthropic/claude-sonnet-4 --port 4000
# Or with a config file for multiple models:
litellm --config litellm_config.yaml --port 4000จากนั้นตั้งค่า Hermes ด้วย hermes model → Custom endpoint → http://localhost:4000/v1
ตัวอย่าง litellm_config.yaml พร้อม fallback:
model_list:
- model_name: "best"
litellm_params:
model: anthropic/claude-sonnet-4
api_key: sk-ant-...
- model_name: "best"
litellm_params:
model: openai/gpt-4o
api_key: sk-...
router_settings:
routing_strategy: "latency-based-routing"ClawRouter — Cost-Optimized Routing
ClawRouter โดย BlockRunAI เป็น local routing proxy ที่ auto-select models ตามความซับซ้อนของ query มันจำแนก requests ใน 14 dimensions และ route ไปยัง model ที่ถูกที่สุดที่สามารถจัดการงานนั้นได้ การชำระเงินทำผ่าน USDC cryptocurrency (ไม่มี API keys)
# Install and start
npx @blockrun/clawrouter # Starts on port 8402จากนั้นตั้งค่า Hermes ด้วย hermes model → Custom endpoint → http://localhost:8402/v1 → model name blockrun/auto
Routing profiles:
| Profile | Strategy | Savings |
|---|---|---|
blockrun/auto | Balanced quality/cost | 74-100% |
blockrun/eco | Cheapest possible | 95-100% |
blockrun/premium | Best quality models | 0% |
blockrun/free | Free models only | 100% |
blockrun/agentic | Optimized for tool use | varies |
:::note
ClawRouter ต้องการ wallet ที่มี USDC บน Base หรือ Solana สำหรับการชำระเงิน ทุก requests จะ route ผ่าน backend API ของ BlockRun รัน npx @blockrun/clawrouter doctor เพื่อตรวจสอบสถานะ wallet
:::
Other Compatible Providers
บริการใดๆ ที่มี OpenAI-compatible API ก็ใช้งานได้ ตัวเลือกยอดนิยมบางส่วน:
| Provider | Base URL | Notes |
|---|---|---|
| Together AI | https://api.together.xyz/v1 | Cloud-hosted open models |
| Groq | https://api.groq.com/openai/v1 | Ultra-fast inference |
| DeepSeek | https://api.deepseek.com/v1 | DeepSeek models |
| Fireworks AI | https://api.fireworks.ai/inference/v1 | Fast open model hosting |
| GMI Cloud | https://api.gmi-serving.com/v1 | Managed OpenAI-compatible inference |
| Cerebras | https://api.cerebras.ai/v1 | Wafer-scale chip inference |
| Mistral AI | https://api.mistral.ai/v1 | Mistral models |
| OpenAI | https://api.openai.com/v1 | Direct OpenAI access |
| Azure OpenAI | https://YOUR.openai.azure.com/ | Enterprise OpenAI |
| LocalAI | http://localhost:8080/v1 | Self-hosted, multi-model |
| Jan | http://localhost:1337/v1 | Desktop app with local models |
ตั้งค่าตัวใดตัวหนึ่งเหล่านี้ด้วย hermes model → Custom endpoint, หรือใน config.yaml:
model:
default: meta-llama/Llama-3.1-70B-Instruct-Turbo
provider: custom
base_url: https://api.together.xyz/v1
api_key: your-together-keyContext Length Detection
:::note Two settings, easy to confuse
context_length คือ total context window - งบประมาณรวมสำหรับ input และ output tokens (เช่น 200,000 สำหรับ Claude Opus 4.6). Hermes ใช้สิ่งนี้เพื่อตัดสินใจว่าจะบีบ history เมื่อใด และเพื่อตรวจสอบ API requests
model.max_tokens คือ output cap - จำนวน tokens สูงสุดที่ model อาจสร้างได้ใน single response มันไม่มีความเกี่ยวข้องกับว่าประวัติการสนทนาของคุณสามารถยาวได้แค่ไหน ชื่อมาตรฐานของอุตสาหกรรม max_tokens เป็นแหล่งที่มาของความสับสนทั่วไป; API ดั้งเดิมของ Anthropic ได้เปลี่ยนชื่อเป็น max_output_tokens เพื่อความชัดเจน
ตั้งค่า context_length เมื่อ auto-detection ได้ขนาด window ผิดพลาด
ตั้งค่า model.max_tokens เฉพาะเมื่อคุณต้องการจำกัดว่า individual responses จะยาวแค่ไหน
:::
Hermes ใช้ multi-source resolution chain เพื่อตรวจจับ context window ที่ถูกต้องสำหรับ model และ provider ของคุณ:
- Config override —
model.context_lengthใน config.yaml (ลำดับความสำคัญสูงสุด) - Custom provider per-model —
custom_providers[].models.<id>.context_length - Persistent cache — ค่าที่ค้นพบก่อนหน้า (คงอยู่แม้จะมีการรีสตาร์ท)
- Endpoint
/models— เรียกใช้ API ของ server ของคุณ (local/custom endpoints) - Anthropic
/v1/models— เรียกใช้ API ของ Anthropic สำหรับmax_input_tokens(สำหรับผู้ใช้ API-key เท่านั้น) - OpenRouter API — metadata model แบบ live จาก OpenRouter
- Nous Portal — suffix-matches Nous model IDs กับ OpenRouter metadata
- models.dev — registry ที่ดูแลโดย community พร้อม context length เฉพาะ provider สำหรับ 3800+ models ใน 100+ providers
- Fallback defaults — รูปแบบ model family ทั่วไป (default 128K)
สำหรับส่วนใหญ่แล้วสิ่งนี้จะใช้งานได้ทันที ระบบนี้รับรู้ provider - model ตัวเดียวกันอาจมีขีดจำกัด context ที่แตกต่างกันขึ้นอยู่กับว่าใครเป็นผู้ให้บริการ (เช่น claude-opus-4.6 คือ 1M บน Anthropic direct แต่ 128K บน GitHub Copilot)
ในการตั้งค่า context length อย่างชัดเจน, ให้เพิ่ม context_length ใน model config ของคุณ:
model:
default: "qwen3.5:9b"
base_url: "http://localhost:8080/v1"
context_length: 131072 # tokensสำหรับ custom endpoints, คุณยังสามารถตั้งค่า context length ต่อ model ได้:
custom_providers:
- name: "My Local LLM"
base_url: "http://localhost:11434/v1"
models:
qwen3.5:27b:
context_length: 32768
deepseek-r1:70b:
context_length: 65536hermes model จะแจ้งให้ทราบถึง context length เมื่อตั้งค่า custom endpoint ปล่อยว่างไว้สำหรับการตรวจจับอัตโนมัติ
:::tip When to set this manually
- คุณกำลังใช้ Ollama ด้วย custom
num_ctxที่ต่ำกว่าค่าสูงสุดของ model - คุณต้องการจำกัด context ให้ต่ำกว่าค่าสูงสุดของ model (เช่น 8k บน model 128k เพื่อประหยัด VRAM)
- คุณกำลังรันอยู่หลัง proxy ที่ไม่ได้ expose
/v1/models:::
Named Custom Providers
หากคุณทำงานกับ custom endpoints หลายตัว (เช่น local dev server และ remote GPU server), คุณสามารถกำหนดพวกมันเป็น named custom providers ใน config.yaml:
custom_providers:
- name: local
base_url: http://localhost:8080/v1
# api_key ถูกละไว้ - Hermes ใช้ "no-key-required" สำหรับ local servers ที่ไม่ต้องใช้ key
- name: work
base_url: https://gpu-server.internal.corp/v1
key_env: CORP_API_KEY
api_mode: chat_completions # optional, auto-detected from URL
- name: anthropic-proxy
base_url: https://proxy.example.com/anthropic
key_env: ANTHROPIC_PROXY_KEY
api_mode: anthropic_messages # สำหรับ Anthropic-compatible proxiesสลับระหว่างพวกมันกลาง session ด้วยไวยากรณ์แบบสามส่วน:
/model custom:local:qwen-2.5 # ใช้ endpoint "local" กับ qwen-2.5
/model custom:work:llama3-70b # ใช้ endpoint "work" กับ llama3-70b
/model custom:anthropic-proxy:claude-sonnet-4 # ใช้ proxyคุณยังสามารถเลือก named custom providers จากเมนู interactive hermes model ได้
Choosing the Right Setup
| Use Case | Recommended |
|---|---|
| แค่ให้มันทำงานได้ | OpenRouter (default) หรือ Nous Portal |
| Local models, setup ง่าย | Ollama |
| Production GPU serving | vLLM หรือ SGLang |
| Mac / no GPU | Ollama หรือ llama.cpp |
| Multi-provider routing | LiteLLM Proxy หรือ OpenRouter |
| Cost optimization | ClawRouter หรือ OpenRouter with sort: "price" |
| Maximum privacy | Ollama, vLLM, หรือ llama.cpp (fully local) |
| Enterprise / Azure | Azure OpenAI with custom endpoint |
| Chinese AI models | z.ai (GLM), Kimi/Moonshot (kimi-coding หรือ kimi-coding-cn), MiniMax, หรือ Xiaomi MiMo (first-class providers) |
:::tip
คุณสามารถสลับระหว่าง providers ได้ตลอดเวลาด้วย hermes model - ไม่จำเป็นต้อง restart ประวัติการสนทนา, memory, และ skills ของคุณจะคงอยู่ไม่ว่าคุณจะใช้ provider ใด
:::
API Keys ทางเลือก
| คุณสมบัติ | ผู้ให้บริการ | ตัวแปรสภาพแวดล้อม |
|---|---|---|
| Web scraping | Firecrawl | FIRECRAWL_API_KEY, FIRECRAWL_API_URL |
| Browser automation | Browserbase | BROWSERBASE_API_KEY, BROWSERBASE_PROJECT_ID |
| Image generation | FAL | FAL_KEY |
| Premium TTS voices | ElevenLabs | ELEVENLABS_API_KEY |
| OpenAI TTS + voice transcription | OpenAI | VOICE_TOOLS_OPENAI_KEY |
| Mistral TTS + voice transcription | Mistral | MISTRAL_API_KEY |
| RL Training | Tinker + WandB | TINKER_API_KEY, WANDB_API_KEY |
| Cross-session user modeling | Honcho | HONCHO_API_KEY |
| Semantic long-term memory | Supermemory | SUPERMEMORY_API_KEY |
การโฮสต์ Firecrawl ด้วยตนเอง (Self-Hosting Firecrawl)
โดยค่าเริ่มต้น Hermes จะใช้ Firecrawl cloud API สำหรับการค้นหาเว็บและการทำ scraping หากคุณต้องการรัน Firecrawl ในเครื่องของคุณเอง คุณสามารถกำหนดให้ Hermes ชี้ไปยัง instance ที่โฮสต์ด้วยตนเองได้ ดูคำแนะนำการตั้งค่าที่สมบูรณ์ได้ที่ SELF_HOST.md ของ Firecrawl
สิ่งที่คุณได้รับ: ไม่ต้องใช้ API key, ไม่มี rate limits, ไม่มีค่าใช้จ่ายต่อหน้า, และความเป็นเจ้าของข้อมูลเต็มรูปแบบ
สิ่งที่คุณสูญเสีย: เวอร์ชัน cloud ใช้ "Fire-engine" ที่เป็นกรรมสิทธิ์ของ Firecrawl สำหรับการหลีกเลี่ยง anti-bot ขั้นสูง (Cloudflare, CAPTCHAs, IP rotation) ส่วน self-hosted ใช้ fetch + Playwright แบบพื้นฐาน ดังนั้นเว็บไซต์ที่ได้รับการป้องกันบางแห่งอาจล้มเหลว การค้นหาจะใช้ DuckDuckGo แทน Google
การตั้งค่า:
-
Clone และเริ่ม stack Docker ของ Firecrawl (5 containers: API, Playwright, Redis, RabbitMQ, PostgreSQL - ต้องการ RAM ประมาณ 4-8 GB):
git clone https://github.com/firecrawl/firecrawl cd firecrawl # In .env, set: USE_DB_AUTHENTICATION=false, HOST=0.0.0.0, PORT=3002 docker compose up -d -
กำหนดให้ Hermes ชี้ไปยัง instance ของคุณ (ไม่ต้องใช้ API key):
hermes config set FIRECRAWL_API_URL http://localhost:3002
คุณยังสามารถตั้งค่าทั้ง FIRECRAWL_API_KEY และ FIRECRAWL_API_URL ได้ หาก instance ที่โฮสต์ด้วยตนเองของคุณเปิดใช้งานการตรวจสอบสิทธิ์
การกำหนดเส้นทางผู้ให้บริการ OpenRouter Provider Routing
เมื่อใช้ OpenRouter คุณสามารถควบคุมวิธีการส่งคำขอไปยังผู้ให้บริการต่างๆ ได้ เพิ่มส่วน provider_routing ในไฟล์ ~/.hermes/config.yaml:
provider_routing:
sort: "throughput" # "price" (default), "throughput", หรือ "latency"
# only: ["anthropic"] # ใช้เฉพาะผู้ให้บริการเหล่านี้
# ignore: ["deepinfra"] # ข้ามผู้ให้บริการเหล่านี้
# order: ["anthropic", "google"] # ลองใช้ผู้ให้บริการตามลำดับนี้
# require_parameters: true # ใช้เฉพาะผู้ให้บริการที่รองรับพารามิเตอร์คำขอทั้งหมด
# data_collection: "deny" # ยกเว้นผู้ให้บริการที่อาจจัดเก็บ/ฝึกฝนข้อมูลทางลัด (Shortcuts): เพิ่ม :nitro ต่อท้ายชื่อโมเดลใดๆ เพื่อจัดเรียงตาม throughput (เช่น anthropic/claude-sonnet-4:nitro) หรือเพิ่ม :floor เพื่อจัดเรียงตามราคา
Fallback Model
กำหนดค่า provider:model สำรองที่ Hermes จะสลับไปใช้อัตโนมัติเมื่อโมเดลหลักของคุณล้มเหลว (rate limits, server errors, auth failures):
fallback_model:
provider: openrouter # required
model: anthropic/claude-sonnet-4 # required
# base_url: http://localhost:8000/v1 # optional, สำหรับ custom endpoints
# key_env: MY_CUSTOM_KEY # optional, ชื่อ env var สำหรับ API key ของ custom endpointเมื่อเปิดใช้งาน fallback จะสลับโมเดลและ provider กลางเซสชันโดยไม่ทำให้การสนทนาของคุณขาดตอน มันจะทำงาน อย่างมากที่สุดครั้งเดียว ต่อเซสชัน
Supported providers: openrouter, nous, openai-codex, copilot, copilot-acp, anthropic, gemini, google-gemini-cli, qwen-oauth, huggingface, zai, kimi-coding, kimi-coding-cn, minimax, minimax-cn, deepseek, nvidia, xai, ollama-cloud, bedrock, ai-gateway, opencode-zen, opencode-go, kilocode, xiaomi, arcee, alibaba, custom.
:::tip
Fallback ถูกกำหนดค่าผ่าน config.yaml เท่านั้น - ไม่มี environment variables สำหรับส่วนนี้ หากต้องการรายละเอียดทั้งหมดเกี่ยวกับเมื่อไหร่ที่มันจะทำงาน, supported providers, และวิธีการโต้ตอบกับ auxiliary tasks และ delegation โปรดดูที่ Fallback Providers.
:::
ดูเพิ่มเติม (See Also)
- Configuration - การตั้งค่าทั่วไป (โครงสร้างไดเรกทอรี, config precedence, terminal backends, memory, compression, และอื่นๆ)
- Environment Variables - รายการอ้างอิงที่สมบูรณ์ของ environment variables ทั้งหมด
📄 user-guide/skills/google-workspace.md
sidebar_position: 2 sidebar_label: "Google Workspace" title: "Google Workspace - Gmail, Calendar, Drive, Sheets & Docs" description: "Send email, manage calendar events, search Drive, read/write Sheets, and access Docs - all through OAuth2-authenticated Google APIs"
ทักษะ Google Workspace
การรวมระบบ Gmail, Calendar, Drive, Contacts, Sheets, และ Docs สำหรับ Hermes ใช้ OAuth2 พร้อมการรีเฟรชโทเคนอัตโนมัติ หากมี จะใช้ Google Workspace CLI (gws) เพื่อให้ครอบคลุมมากขึ้น และหากไม่สามารถใช้ได้ จะย้อนกลับไปใช้ Google's Python client libraries
Skill path: skills/productivity/google-workspace/
การตั้งค่า (Setup)
การตั้งค่านี้ขับเคลื่อนโดย Agent อย่างสมบูรณ์ - เพียงแค่สั่งให้ Hermes ตั้งค่า Google Workspace และระบบจะนำคุณไปทีละขั้นตอน ขั้นตอนการทำงานมีดังนี้:
- สร้าง Google Cloud project และเปิดใช้งาน APIs ที่จำเป็น (Gmail, Calendar, Drive, Sheets, Docs, People)
- สร้าง OAuth 2.0 credentials (ประเภท Desktop app) และดาวน์โหลด client secret JSON
- การอนุญาต (Authorize) - Hermes จะสร้าง auth URL คุณทำการอนุมัติในเบราว์เซอร์ จากนั้นคัดลอก redirect URL กลับมา
- เสร็จสิ้น (Done) - โทเคนจะรีเฟรชอัตโนมัติจากจุดนี้เป็นต้นไป
:::tip ผู้ใช้ที่ต้องการเฉพาะอีเมล หากคุณต้องการเฉพาะอีเมล (ไม่รวม Calendar/Drive/Sheets) ให้ใช้ทักษะ himalaya แทน - ซึ่งทำงานด้วย Gmail App Password และใช้เวลาเพียง 2 นาที ไม่จำเป็นต้องมี Google Cloud project :::
Gmail
การค้นหา (Searching)
$GAPI gmail search "is:unread" --max 10
$GAPI gmail search "from:[email protected] newer_than:1d"
$GAPI gmail search "has:attachment filename:pdf newer_than:7d"ส่งคืน JSON ที่มี id, from, subject, date, snippet, และ labels สำหรับแต่ละข้อความ
การอ่าน (Reading)
$GAPI gmail get MESSAGE_IDส่งคืนเนื้อหาข้อความทั้งหมดเป็นรูปแบบข้อความ (ให้ความสำคัญกับ plain text และจะย้อนกลับไปใช้ HTML)
การส่ง (Sending)
# Basic send
$GAPI gmail send --to [email protected] --subject "Hello" --body "Message text"
# HTML email
$GAPI gmail send --to [email protected] --subject "Report" \
--body "<h1>Q4 Results</h1><p>Details here</p>" --html
# Custom From header (display name + email)
$GAPI gmail send --to [email protected] --subject "Hello" \
--from '"Research Agent" <[email protected]>' --body "Message text"
# With CC
$GAPI gmail send --to [email protected] --cc "[email protected]" \
--subject "Update" --body "FYI"ส่วนหัว From แบบกำหนดเอง (Custom From Header)
Flag --from ช่วยให้คุณปรับแต่งชื่อที่แสดงของผู้ส่งในอีเมลขาออก ซึ่งมีประโยชน์เมื่อ Agent หลายตัวใช้บัญชี Gmail เดียวกัน แต่คุณต้องการให้ผู้รับเห็นชื่อที่แตกต่างกัน:
# Agent 1
$GAPI gmail send --to [email protected] --subject "Research Summary" \
--from '"Research Agent" <[email protected]>' --body "..."
# Agent 2
$GAPI gmail send --to [email protected] --subject "Code Review" \
--from '"Code Assistant" <[email protected]>' --body "..."วิธีการทำงาน: ค่า --from จะถูกตั้งเป็น RFC 5322 From header บน MIME message. Gmail อนุญาตให้ปรับแต่งชื่อที่แสดงสำหรับที่อยู่อีเมลที่ได้รับการยืนยันของคุณโดยไม่ต้องมีการตั้งค่าเพิ่มเติม ผู้รับจะเห็นชื่อที่แสดงแบบกำหนดเอง (เช่น "Research Agent") ในขณะที่ที่อยู่อีเมลยังคงเดิม
สำคัญ: หากคุณใช้ ที่อยู่อีเมลที่แตกต่างกัน ใน --from (ไม่ใช่บัญชีที่ได้รับการยืนยัน) Gmail กำหนดให้ที่อยู่นั้นต้องถูกตั้งค่าเป็น Send As alias ใน Gmail Settings → Accounts → Send mail as.
Flag --from ใช้ได้ทั้งในการ send และ reply:
$GAPI gmail reply MESSAGE_ID \
--from '"Support Bot" <[email protected]>' --body "We're on it"การตอบกลับ (Replying)
$GAPI gmail reply MESSAGE_ID --body "Thanks, that works for me."ทำการเชื่อมโยงการตอบกลับโดยอัตโนมัติ (ตั้งค่า In-Reply-To และ References headers) และใช้ thread ID ของข้อความต้นฉบับ
Labels
# List all labels
$GAPI gmail labels
# Add/remove labels
$GAPI gmail modify MESSAGE_ID --add-labels LABEL_ID
$GAPI gmail modify MESSAGE_ID --remove-labels UNREADCalendar
# List events (defaults to next 7 days)
$GAPI calendar list
$GAPI calendar list --start 2026-03-01T00:00:00Z --end 2026-03-07T23:59:59Z
# Create event (timezone required)
$GAPI calendar create --summary "Team Standup" \
--start 2026-03-01T10:00:00-07:00 --end 2026-03-01T10:30:00-07:00
# With location and attendees
$GAPI calendar create --summary "Lunch" \
--start 2026-03-01T12:00:00Z --end 2026-03-01T13:00:00Z \
--location "Cafe" --attendees "[email protected],[email protected]"
# Delete event
$GAPI calendar delete EVENT_ID:::warning
เวลาของ Calendar ต้อง มีการระบุ timezone offset (เช่น -07:00) หรือใช้ UTC (Z) วันที่และเวลาเปล่าๆ เช่น 2026-03-01T10:00:00 นั้นคลุมเครือและจะถูกถือว่าเป็น UTC
:::
Drive
$GAPI drive search "quarterly report" --max 10
$GAPI drive search "mimeType='application/pdf'" --raw-query --max 5Sheets
# Read a range
$GAPI sheets get SHEET_ID "Sheet1!A1:D10"
# Write to a range
$GAPI sheets update SHEET_ID "Sheet1!A1:B2" --values '[["Name","Score"],["Alice","95"]]'
# Append rows
$GAPI sheets append SHEET_ID "Sheet1!A:C" --values '[["new","row","data"]]'Docs
$GAPI docs get DOC_IDส่งคืนชื่อเอกสารและเนื้อหาข้อความทั้งหมด
Contacts
$GAPI contacts list --max 20รูปแบบผลลัพธ์ (Output Format)
คำสั่งทั้งหมดส่งคืน JSON ฟิลด์หลักสำหรับแต่ละบริการ:
| Command | Fields |
|---|---|
gmail search | id, threadId, from, to, subject, date, snippet, labels |
gmail get | id, threadId, from, to, subject, date, labels, body |
gmail send/reply | status, id, threadId |
calendar list | id, summary, start, end, location, description, htmlLink |
calendar create | status, id, summary, htmlLink |
drive search | id, name, mimeType, modifiedTime, webViewLink |
contacts list | name, emails, phones |
sheets get | 2D array of cell values |
การแก้ไขปัญหา (Troubleshooting)
| Problem | Fix |
|---|---|
NOT_AUTHENTICATED | รัน setup (สั่งให้ Hermes ตั้งค่า Google Workspace) |
REFRESH_FAILED | โทเคนถูกเพิกถอน - รันขั้นตอนการอนุญาตใหม่ |
HttpError 403: Insufficient Permission | ขาด scope - เพิกถอนและอนุญาตใหม่ด้วยบริการที่ถูกต้อง |
HttpError 403: Access Not Configured | ไม่ได้เปิดใช้งาน API ใน Google Cloud Console |
ModuleNotFoundError | รัน setup script ด้วย --install-deps |
extent analysis
TL;DR
- ตั้งค่า Google Workspace ผ่าน
hermes modelและทำตามคำแนะนำในการตั้งค่า OAuth2 และการอนุญาต
Guidance
- ตรวจสอบสถานะการอนุญาต: ตรวจสอบว่าคุณได้ทำการอนุญาต Google Workspace แล้วหรือยัง และตรวจสอบว่าบริการที่จำเป็น (Gmail, Calendar, Drive, Sheets, Docs) ถูกเปิดใช้งานหรือไม่
- ตรวจสอบสิทธิ์: ตรวจสอบว่าคุณมีสิทธิ์ที่จำเป็นในการใช้บริการ Google Workspace ที่คุณต้องการ
- รัน setup script: รัน
hermes modelและทำตามคำแนะนำในการตั้งค่า Google Workspace - ตรวจสอบการเชื่อมต่อ: ตรวจสอบว่า Hermes สามารถเชื่อมต่อกับ Google Workspace ได้หรือไม่โดยการรันคำสั่ง
gmail searchหรือcalendar list
Example
$ hermes model
# ทำตามคำแนะนำในการตั้งค่า Google Workspace
$GAPI gmail search "is:unread" --max 10Notes
- การตั้งค่า Google Workspace อาจต้องใช้เวลาและความพยายามในการตั้งค่า OAuth2 และการอนุญาต
- ตรวจสอบให้แน่ใจว่าคุณมีสิทธิ์ที่จำเป็นในการใช้บริการ Google Workspace ที่คุณต้องการ
Recommendation
- ใช้
hermes modelเพื่อตั้งค่า Google Workspace และทำตามคำแนะนำในการตั้งค่า OAuth2 และการอนุญาต
Vote matrix · Quick signals
Still need to ship something?
×6Another batch ranked right after the header list — different links, same matching logic.
TRENDING
- Feature Request: Configurable per-minute rate limiting (RPM) for models to prevent 429 errors
- Android: Hermes App + Termux install share ~/.hermes and cause silent permission loops
- hermes update emits unicode-animations ANSI demo in non-interactive logs
- hermes update downgrades aiohttp from 3.13.4 to 3.13.3
- npm install warns about deprecated @babel/plugin-proposal-private-methods
- DingTalk inbound media URLs are skipped as unreadable native image paths
- fix(dashboard): ChatPage clears header action buttons on ALL pages, not just Sessions
- [Bug]: check_web_api_key() hardcodes built-in backends — third-party web search plugins silently disabled
- Hermes Web UI 修复经验:GatewayManager 补丁、进程 D 状态、数据库升级问题
- Telegram gateway can silently drop turn after /stop with response=0 chars while internal work continues
- Bug Report: v0.14.0 上下文污染 — 历史回复碎片回注到新请求
- Bug: hermes skills search table truncates Identifier column — install fails with copied value
- [skills-index-watchdog] Skills index is stale or degraded (degraded)
- Discord approval embed not rendering on web/mobile — embed data present in API but invisible
- Idea: Discord voice-channel participation / opt-in auto-join mode
- [Feature]: Claude Code--ultrawork
- build-arm64 job deterministically fails on cold cache (Azure SAS token expires mid-build)
- [Enhancement] computer_use: action=type should fall back to key events for terminal emulators (Ghostty/Terminal.app/iTerm2)
- Feature Request: Session Recovery on Temporary Provider Outage
- [Bug]: Hermes dashboard not working on NixOS (container)
- [Feature]: Add option to ignore @all/@everyone mentions in Feishu group chats
- QQ Bot WebSocket 频繁断开:长时间工具执行阻塞 asyncio 事件循环导致心跳超时
- patch tool: new_string escape sequences (\t) get written literally
- Feature Request: i18n / 多语言支持(国际化)
- Bug: web_crawl schema lets models auto-guess "instructions" instead of asking the user via clarify
- feat: `!command` prefix for direct shell execution (like Claude Code)
- Expose currently-running cron jobs via /api/jobs (or new endpoint)
- [Bug]: Kanban parent-child handoff: scratch workspace GC destroys artifacts before child can read them
- [Bug, Windows] hermes gateway restart loses session context — planned_stop_marker not written before SIGTERM
- [Bug]: Codex→DeepSeek fallback sends assistant turns without reasoning_content → HTTP 400 (require-side cross-provider failover)
- [Bug]: Update got stuck half way, reboot it, then ModuleNotFoundError: No module named 'hermes_cli'
- Kanban dispatcher corrupt-board handling and multi-profile gateway ownership ambiguity
- Gateway can resend a short fallback message when the real final Telegram response was already delivered
- [BUG] Bedrock: Fix 'Invalid API Key format' for presigned URL tokens
- Secret redaction corrupts code syntax in tool output (write_file, execute_code, terminal)
- Unable to connect Ollama Cloud with Pro Subscription to Hermes
- feat: fuzzy substring matching for /skill autocomplete
- PRD: Autonomous market-impact prediction briefing system
- Kanban dashboard should support task/card deep links
- [Feature] Native Feishu CardKit Streaming: consolidate best-in-class implementations
- [Feature]: Inject mental model into context when using Hindsight
- Interactive CLI hides tool output despite display.tool_progress=all, and hermes chat -v does not restore it
- fix(api_server): _handle_responses drops text.format JSON schema — structured output constraints silently ignored
- state.db FTS corruption goes undetected — no integrity check, no repair path
- bug: fallback routing can select text-only models for image requests and hide the primary failure
- feat(kanban): persist worker session_id per run and pass --resume on respawn after unblock
- feat(kanban): support GitHub/OMO lifecycle bridge for Xiyou-style automation
- Expose update-safe TUI/composer hooks for voice transcript and composer events
- Hide or configure voice transcript status rows in editable dictation mode
- [Feature]: Per-Tool / Per-Toolset Approval Policies
- Context compression creates orphan sessions missing from state.db
- messaging platform
- feat: Add read-only / silent monitoring mode for WhatsApp adapter
- double-.hermes path mismatch, the HOME env var leak, and the fallback-notification UX problem
- Bug: Plattform-Bundle name `hermes-yuanbao` in `agent.disabled_toolsets` silently kills ALL tools in gateway path (Telegram + cron), CLI unaffected
- CLI /yolo (in-chat) does not bypass dangerous command approvals — env var freeze + missing enable_session_yolo call
- OpenAI Codex provider crashes with "'NoneType' object is not iterable" (HTTP None)
- DEEPSEEK_API_KEY blocked by env blocklist in gateway process — cron jobs fail with deepseek provider
- fix(feishu): Card action callback routing issues - invalid message_id and unrecognized /card command
- Discord plugin: profiles without explicit `discord:` block silently get `require_mention=true` + `auto_thread=true` (regression in cc8e5ec2a)
- [Bug]: DISCORD_ALLOWED_ROLES ignored by gateway _is_user_authorized — role-authorized users get 'Unauthorized user' rejection
- [Bug]: /new, /clear, and /reset commands freeze the terminal session
- openai-codex subscription backend returns HTTP 200 with response.output=None, causing Slack/cron failures
- RFC: Centralized Model/Provider Registry
- bug: openai-codex provider — TypeError: 'NoneType' object is not iterable on every request (gpt-5.5)
- [Feature]: Source-aware instruction gate — architectural mitigation for indirect prompt injection
- Named custom provider stale_timeout_seconds ignored because runtime provider is normalized to `custom`
- guard test (ignore)
- [Feature]: per-platform LLM request_overrides (extra_body / reasoning_effort / service_tier)
- One-shot smoke: add Flue-backed orchestration fixture
- Gateway should not treat stale Codex app-server progress as final response after post-tool silence
- `docker_run_as_host_user: true` breaks bundled skills: Hermes home is mounted into `/root/.hermes` but the container runs as a non-root user (`HOME=/home/pn`)
- [Bug]: gateway api_server streaming bypasses server-side tool-call loop when chat_template_kwargs.enable_thinking=false (model emits tool name as plain text)
- [Feature]: Pre-install python-telegram-bot in Umbrel Hermes Docker image
- YouTube Shorts filter not working in youtube-content skill
- v0.15.0 PyPI release breaks ALL platforms — plugin.yaml manifests missing from package
- RFC: On-demand tool/skill/MCP discovery — decouple schema registration from process lifecycle
- Pixshelf: local-first stock photo workflow command center
- [Bug]: baoyu infographic skill should not silently bypass image_generate
- Pixshelf v1.5: manual submission tracking for stock agencies
- `hermes config set` silently accepts unknown keys, writing them where the runtime never reads
- Honcho memory prefetch hang on fresh CLI subprocess in v0.15.0 (regression from #27190)
- [Bug] v0.15.0 Docker image: stage2-hook.sh, main-wrapper.sh missing; container_boot module removed
- Feature: Reduce cache-read token overhead for DeepSeek providers — configurable cache_ttl, skills snapshot trimming, memory compaction
- Windows: three bugs from daily use (plugin discovery, gateway exit code, Unicode decode
- holographic memory: HRR silently degrades to FTS5 when numpy is missing
- Make max_tokens configurable for aux vision calls
- Conversation compression desynchronizes session ID between agent context and gateway routing, causing silent message loss
- [Bug]: v0.15.0 Docker image:The TUI cannot be used in the dashboard.
- cron: skip_memory=True blocks fact_store/memory tools from all cron jobs
- TUI: Node.js OOM crash when agent uses browser tools repeatedly
- feat: model_profiles — per-model toolset and memory config
- Automatic background skill patching disrupts active sessions (severe impact on local models)
- ensure_hermes_home() creates root-owned dirs in profile subdirectories when kanban workers are dispatched
- Feature: opt-in webhook bypass for DISCORD_ALLOW_BOTS — allow operator-initiated probes without weakening bot-loop guard
- v0.15.0: Codex requests fail HTTP 400 when participant display_name contains non-ASCII (emoji breaks input[].name pattern)
- Architecture: State Persistence Precedence (Memory vs Skills vs Hooks)
- [Bug]: cronjob tool: create action always fails with "schedule is required for create" even when parameters are provided
- codex-oauth: 'NoneType' object is not iterable in _run_codex_stream (gpt-5.5) — every turn fails non-retryably
- Docs/Config: Plugin local scope enablement ambiguity
- [Bug]: CLI freezes after using /new command (WSL)
- Profile Codex auth can ignore global credential pool when local state is stale
- [workflow-engine] CRITICAL: variable substitution crashes on regex metachars in user input
- [workflow-engine] HIGH: loop and bash nodes leak subprocesses on timeout
- [workflow-engine] HIGH: README documents config env vars the engine never reads
- [workflow-engine] MEDIUM: workflow_run rate limit bypassable via concurrent calls (TOCTOU)
- [workflow-engine] chore: manifest gaps, side-effectful register(), dead code, unauth kanban dispatch
- [mcp_lazy] HIGH: synthetic mcp_server_<name> stub collides with a real MCP server named 'server'
- [mcp_lazy] HIGH: promote_server eager flag documented but never persisted
- [mcp_lazy] MEDIUM: _prev_mode dict leaks and goes stale; not cleared on session evict
- [mcp_lazy] MEDIUM: get_pool has unlocked check-then-set race on pool creation
- [mcp_lazy] MEDIUM: pre_tool_call gives no guidance for unpromoted server-stub calls
- [mcp_lazy] chore: undeclared pre_tool_call hook, nonexistent 'mcp_load_tools' name in docs, missing tests
- [a2a_fleet] CRITICAL: server never auto-starts — register() runs outside an event loop
- [a2a_fleet] CRITICAL: auth_required defaults to false on a cross-machine surface
- [a2a_fleet] HIGH: remove invented disable() hook — loader never calls it, port leaks on reload
- [a2a_fleet] HIGH: plugin.yaml missing kind / provides_tools / requires_env (token env undeclared)
- [a2a_fleet] MEDIUM: tighten wide-open CORS, anonymous /health peer leak, and peer-URL SSRF
- [a2a_fleet] MEDIUM: relocate tests to tests/plugins/ and cover sync-register + auth-default paths
- xai-oauth auxiliary client incorrectly uses Responses API (CodexAuxiliaryClient), causing 403 on compression/vision/web_extract
- [Bug]: Direct Copilot gpt-5.5 large resumes are killed by 12s Codex TTFB watchdog
- [Bug]: `hermes uninstall` does not work on Windows
- TUI: Thinking block leaks raw JSON and Σ character
- Hostinger VPS: migration Hermes Agent → Hermes WebUI impossible (tini + UID mismatch + sessions)
- /goal judge over-continues exploratory goals unless the assistant explicitly says the goal is complete
- /goal auto-continuation can be amplified by preflight compression/session split and resurrect stale task state
- Dashboard infinite reload loop in loopback mode — GET /api/auth/me returns 401 on every page load
- [Bug]: Provider/LLM switch leaves stale encrypted_content causing 400 errors on Telegram sessions
- [Bug]: Infinite reload loop / React state loop on Sessions tab (Firefox + Chrome) — repeated 401 on /api/auth/me (v0.15.0)
- show_reasoning should work independently of streaming in CLI mode
- Feature Request: Strip reasoning/<think> blocks from TTS preprocessing
- mcp add / mcp test raise NameError when mcp package not installed
- v0.14.0 dashboard breaks behind reverse proxies — two regressions
- Skills hub creates empty category directories when no skills installed
- [Bug]: Custom endpoint: ChatCompletions returns content, but Hermes treats response as empty (v0.14.0)
- fix: atomic_replace() fails with EXDEV when HERMES_HOME is a cross-filesystem symlink
- fix(gateway): Feishu session cancellation orphans session guard, permanently blocking messages
- Custom endpoint pricing can overestimate Crof qwen3.5-9b cost by 1,000,000x
- MCP OAuth callback: module-level port global causes port collisions and structural weaknesses vs upstream
- Bug: send_message tool bypasses validate_media_delivery_path security check
- Proposal: Add Mnemosyne to official memory provider documentation
- feat(swarm): support custom verifier/synthesizer body + skills
- Template conversion failed
- Error occurred in the operation of the agent node in the workflow.
- PubSub client overrides Sentinel client when REDIS_USE_SENTINEL is enabled
- Frontend description of the Retrieval node output does not match the actual output
- JSON type input var raise Intenal server error
- cannot extract elements from a scalar
- 负载均衡 为模型配置多组凭据,并自动调用,此功能无法选择
- add models is error
- panic: could not create filter
- Persist partially generated messages when /chat-messages/:task_id/stop is called
- MCP server connection fails with 403 — request never leaves Dify (SSRF proxy suspected)
- Support durable async execution backends for long-running workflow steps
- [Xiaomi MiMo] Credentials validation fails with 400 "Not supported model mimo-v2-flash" when using Token Plan endpoint (v0.0.7)
- After clicking preview on a parent-child segmented knowledge base, it shows 0 chunks
- Retrieval score differs between UI upload (.docx) and API upload (.txt) despite identical chunk content and embedding model
- gemini cli crash again
- Xbox gift card code damage
- Damage caused by the gemini cli crash
- ioctl(2) failed, EBADF (Bad File Descriptor)
- Feat: Support Bun as an alternative runtime/package manager for updates and extensions
- fatal error again!!!!
- ioctl error
- Critical Crash: ioctl(2) failed, EBADF in ShellExecutionService.resizePty
- ioctl(2) failed, EBADF
- v0.44.0 Regression: Critical crash with ioctl(2) failed, EBADF during PTY resize
- Crash on startup: ioctl(2) failed, EBADF in UnixTerminal.resize
- Crash: `ioctl(2) failed, EBADF` in `node-pty` during PTY resize on macOS
- Gemini CLI crashes with `ioctl(2) failed, EBADF` in `node-pty` during `resizePty`
- Remote Role
- ERROR ioctl(2) failed, EBADF /home/mich
- RangeError: Maximum call stack size exceeded
- EBADF Error during folder creationg broke session and terminal glitches
- MAIP / Gargoub Project - Mediterania - North Coast
- Gemini cli crash again in this morning
- ERROR ioctl(2) failed, EBADF
- Verified node install fails — Checksum verification failed (Cloud)
- The extended debugging key did not arrive during registration.
- CollaborationPane unmounts collaboration store on single-user instances, causing permanent "No network connection" state
- Workflow cannot be saved when the name contains "->" (Potentially malicious string)
- automation does not work and does not show an error
- Raj Ai Automation
- Default Data Loader: DOMMatrix is not defined error
- Feature: Per-node execution timestamp overlay on canvas during workflow run
- AI Agent + Vertex `gemini-3.5-flash`: 400 "missing thought_signature" on sequential multi-turn tool calls (post-#24982)
- PDF Loader in Pinecone Vector Store fails due to pdf-parse version conflict (v2 not supported)
- emailReadImap: add UID deduplication, batch size cap, and numeric uid enforcement
- Manual node execution fails with "Could not find a node" when autosave is disabled (N8N_WORKFLOWS_AUTOSAVE_DISABLED)
- Schedule Trigger stopped firing — workflow Published & active, manual executions succeed, no automated fires for 2+ hours
- [MCP SDK] create_workflow_from_code intermittently returns HTTP 500, often as a false negative (workflow persists anyway, causing duplicates on retry)
- Credential-load wedge: workflows using googleApi/jwtAuth credentials silently fail to execute after key rotation
- Google Sheets Trigger every minute is not working manual Execute is working sent email
- [BUG] Plugin marketplace MCP connector remains stuck "still connecting" when mcp-remote requires OAuth
- [redacted at user request]
- Opus 4.7 behavioral regression: loaded instruction-following discipline degraded in recent Claude Code/Cowork updates
- [BUG] Tailscale via Homebrew CLI + Mac App Store GUI, both Macs on macOS, Cowork blocked by VPN detector despite Tailscale being a mesh VPN with no traffic interception
- stopShellPty on tab switch kills active sessions (exit 143) — regression in May 27 build
- [BUG] Long URLs are broken into multiple lines and become unclickable in terminal output
- [BUG] claude rm/stop/reap SIGKILLs background session tree without SIGTERM grace, orphaning git index.lock and similar
- [BUG] Default git workflow in the system prompt was pushed without context or consent
- [MODEL] Inconsistent output quality / Ignoring instructions (overfitting and inappropriate repetition of Korean vocabulary)
- You've hit your weekly limit · resets May 31 at 5pm (Asia/Shanghai)
- Paid yearly subscription silently downgraded to Free with no user action
- [Regression v2.1.153] Plugin bash hooks fail with "echo: write error: Permission denied" on Windows (claude-mem, shell: "bash")
- [BUG] Connector toggles in conversation are not clickable — must click text label instead
- [remote-control] Input from mobile app/browser not reaching host session — output works fine
- Model fails to read/reference CLAUDE.md contents despite being loaded in context
- [BUG] Claude Desktop reinstall destroys Code chat history (transcripts + Recents) while regular Chat history, project files, and memory all survive
- Bypass mode clamps to Accept Edits even with the toggle ON (Claude Code Desktop 1.9255.2 / CC 2.1.149)
- [BUG] TUI input freezes randomly mid-typing — entire prompt becomes unresponsive for minutes
- [BUG] Cowork downloads Linux ELF binary instead of macOS binary on macOS Sonoma 14.8.7 — exit code 132 (SIGILL) on every session
- [Feature Request] Persistent project memory — sessions forget everything on close, forcing users to keep many sessions open
- [Bug] Thread context stale after sleep/resume, returns outdated date and calendar data
- [FEATURE] Add context window usage indicator and warning before auto-compaction
- [BUG] Dictation error: Invalid character in header content ["x-config-keyterms"] on Windows
- [Bug] Anthropic API Error: Server rate limiting despite normal usage
- Does delegating work to `claude -p` subprocesses reduce context accumulation in the parent session?
- [BUG] Claude Code hangs on M1 Mac when terminal says "opening browser to sign in" and browser opens
- [BUG] Claude_Preview MCP preview_start spawns dev server with main-repo cwd instead of session's worktree cwd
- [Bug] Anthropic API Error: Server rate limiting during request execution
- [Bug] Anthropic API Error: Server rate limiting on concurrent requests
- [Bug] Ultraplan ready notification fires before cloud agent completes execution
- [BUG] API 500 ERROR ALL THROUGHOUT THE DAY
- [BUG] Cowork: Live Artifacts folder path changed in 1.9255.2, no automatic migration from Documents\Claude\Artifacts
- [Bug] Auto-compact never triggers despite statusline reporting "100% context used" (v2.1.153, Max sub, 200K mode)
- [BUG] [Desktop / macOS] 'Open in → New Window' detached session: font renders smaller than main, no per-window controls, Cmd+/Cmd- keystrokes routed to main window instead
- Feature request: option to switch between classic and new minimal UI
- [Feature Request] Show timestamps for each message
- [BUG] Terminal corruption when permission prompt appears while navigating Agent Teams agent selection menu
- [FEATURE] Allow users to customize the background color of the Claude desktop app beyond the current light/dark theme presets.
- [BUG] Statusline not displaying on Windows [fixed]
- Background agent UI Stop button is a no-op for stuck agents — process keeps consuming tokens
- Background agents silently die on session pause/resume — no completion notification, no work recovery
- Add option to hide email address from welcome banner
- [BUG] SSH Remote: `projects` field in remote ~/.claude.json becomes null after desktop restart — jsonl files intact, UI shows 'No messages yet' for every session
- [Bug] Claude Code not applying fixes despite claiming to complete tasks
- billing is unfair and poorly documented
- [BUG] Claude Code on the web: declared plugins inactive on first session, require restart to fully load
- [BUG] Restore from archive deleted sessions instead of restoring them
- [BUG] M365 connector fails with AADSTS50011 in Cowork — localhost vs 127.0.0.1 redirect URI mismatch
- claude agents: workflow slash-commands missing from dispatch-input completion (regression-adjacent to #61424)
- Claude Desktop's Info.plist missing TCC usage strings, blocks all EventKit-based MCP servers
- False-positive safety blocks on self-administered governance amendments — request for owner-authority mode for verified professional users
- [BUG] Stop pushing "AUTO"-mode
- [DOCS] Plugin marketplace guide omits `skipLfs` option for git-based sources
- [DOCS] MCP docs omit combined startup notification for MCP server and connector authentication
- [DOCS] Agent view docs omit macOS Privacy & Security identity for background agents
- [DOCS] Npm update docs do not explain release-channel behavior for `claude update`
- [DOCS] Agent SDK docs omit `subagent_type: "claude"` worktree and output persistence behavior
- [DOCS] Background session docs omit `$CLAUDE_JOB_DIR` temp-file behavior
- [FR] mask env-var values in 'claude mcp get <server>' output
- [FR] subagent worktrees should not inherit stale local 'user.email' from prior dispatches
- [BUG] Windows: Grep tool leaks rg.exe + conhost.exe processes (~2000 zombies / 14 GB RAM in long sessions)
- [BUG] Stats dashboard "Peak hour" appears off by one hour
- [BUG] Diff highlight (teal SGR background) bleeds past changed text in 2.1.150–2.1.153
- [FEATURE] confirm before deleting session
- Plugin PostToolUse hooks still silently skip in Claude Desktop / Cowork (re-filing closed #51904)
- /code-review skill: silent fallback to main...HEAD reviews other people's commits, and JSON-only output is hard to read
- Monitor tool doesn't source the shell snapshot like Bash does; PATH-dependent tools (jq, sleep, etc.) fail in Monitor commands on macOS/Nix
- [Bug] Long input lines truncated with ellipsis while typing instead of wrapping in terminal UI
- [FEATURE] VS Code extension: Render submitted user messages as Markdown in chat
- OSC 52 copy from Claude TUI doesn't reach clipboard inside tmux (regression in 2.1.146–2.1.153)
- [BUG] RemoteTrigger create/update returns HTTP 400 with circular error: "event_type is required" / "unknown field event_type"
- [BUG] Option to hide or minimize the built-in "status footer" (multi-line debug/cost panel) [re-raise of #31475]
- [Bug] Feedback submissions being closed without review or action
- [FEATURE] Word-jump cursor navigation in Chat input (option+arrow / bindable actions)
- [FEATURE] ! shell mode: filesystem tab completion
- [BUG] API Error: Usage credits required for 1M context
- claude agents: OSC 52 clipboard emission broken in tmux (regression in 2.1.146–2.1.153)
- CLI crashes on macOS 15 M3 - exit code 1
- [FEATURE] Support Cmd+V image paste from clipboard
- [FEATURE] Enhance claude.ai M365 connector to support MS Planner
- [BUG] Slash command autocomplete hijacks pasted absolute file paths starting with /
- PreToolUse hook `if` filter false-positives on complex Bash commands
- [BUG] Diff panel hangs/whites out
- Feature Request: Support drag-and-drop for binary documents (.wps, .doc, .docx, .xlsx, .pdf) in VS Code extension
- [BUG] activation of 1M context in VSCode
- [FEATURE] Support i18n / language localization for built-in slash command outputs
- Ctrl+V para colar imagens deixou de funcionar no CLI (Windows, PowerShell)
- [FEATURE] Please add Norwegian (Bokmål/Nynorsk) language support to the Claude Code interface
- [BUG] OTel log events (claude_code.user_prompt, api_request_body, tool_decision, hook_execution_complete) emitted with empty trace_id/span_id while sibling spans correlate correctly
- [BUG] Cowork crashes on every message, no VM logs generated, missing AppData\Roaming\Claude
- [FEATURE] first-class session handoff + per-session token budgets for unattended runs
- [FEATURE] Smart paste: convert clipboard code to file reference chips (like Cursor)
- [Feature Request] Restore chat pin functionality to title chat submenu
- [BUG] SIGILL issues with version 2.1.153
- [BUG] Cowork plugin upload fails with generic "Plugin validation failed" when a `description` field in any SKILL.md frontmatter contains angle brackets (`<…>`)
- [BUG] Desktop App 2.1.144+: startup scanner deletes cliSessionId from claude-code-sessions local files on every launch — session not found on disk
- [Feature Request] Add keyboard shortcut to copy last message with proper formatting
- [MODEL] Opus 4.7 not 1M
- Allow naming/renaming background agents in `claude agents` view
- Stale worktrees in .claude/worktrees/ are never cleaned up, consuming massive disk space
- Agent worktrees are never cleaned up, silently consuming disk space
- Subagent worktrees not auto-cleaned when reviewer writes scratch files
- [Bug] Skill initialization hangs for extended duration in Plan Mode
- Claude Desktop writes malformed registry Run entry (nested escaped quotes) - crashes Windows Task Manager and other Run-key parsers
- IME candidate window shows at bottom-right corner instead of caret position (Windows CMD)
- [BUG] Pressing 'Escape' doesn't close the /BTW conversation when the main conversation is asking for approval
- [BUG] Opus 4.7 (1M) intermittently emits empty-string values for tool_use.input fields, killing the session
- FleetView agent UI shows "running" with incrementing elapsed time after agent has returned
- /doctor flags context-scoped cmd+c binding as macOS conflict (false positive)
- [BUG] Text Rendering in Elvish
- Desktop app: Bypass Permissions mode flips to Accept Edits on first prompt (M5 / macOS 26.5)
- [Workaround] Date-Weekday Verification Hook — Prevents Claude from writing wrong weekdays
- [BUG] Claude Code create c:/memfs directory without asking me.
- [BUG] Claude Code's Bash execution waits forever with no processes running
- [BUG] usage stays stuck waiting for 5 hr limit after upgrading to premium seat in team plan
- [Workflow tool] resume cache is unreachable for nontrivial workflows because LLM dispatchers can't transcribe args byte-exactly
- Code review (Preview): "Add a repository" shows no results for private GitHub org repos
- [BUG] /context commands blows up context
- [Feature Request] Add precache expiry hook to enable proactive compaction before token eviction
- [BUG] Context indicator shows 0% at session start despite ~20K+ tokens already loaded
- [Feature Request] Add semantic search for --resume session history
- [Feature Request] Add session search, tagging, and filtering capabilities
- [BUG] Cowork Dispatch reports "desktop not available" on Windows 11 while standard Cowork works normally
- [Bug] Claude Code provides incorrect suggestions with high confidence despite errors
- defaultMode: acceptEdits silently overrides per-path permissions.ask rules for Write/Edit
- [FEATUR configurable tip interval (e.g. tipIntervalSeconds: 30 in settings)E]
- Plugin marketplace fails to load: schema rejects 'displayName' key (v2.1.153)
- claude agents: in-session copy uses broken OSC 52 path while overview correctly uses tmux buffer
- [BUG] Plugin agent descriptions (and custom agents) load unconditionally into context — no parity with disable-model-invocation for skills
- Crashed ultrareview consumed a free credit despite producing zero findings
- [Bug] Character rendering issue - invisible or missing text display
- [BUG] Cowork: processo Claude Code encerra com código 3 — .claude.json não contém token de autenticação (Windows 11 25H2)
- [BUG] 2.1.153 silently discards tools/list response from rmcp 0.12.0 HTTP MCP server (works in 2.1.152, wire-identical handshake)
- VS Code extension: option to auto-resume last session when reopening a workspace folder
- [Bug] Conversation continuation failure
- [BUG] Cowork crashes every time I start a new chat or attempt to continue an existing one in any project. The error displayed is: "Claude Code è andato in crash
- [Bug] Unannounced quota changes
- Native update/install fails with 'socket connection was closed unexpectedly' behind proxy — undici TLS incompatibility
- [BUG] Session name reverting after manual change
- [BUG] 非正常思考,上下文过长时,一直显示思考,点击interrupt按钮失效
- Honor `tools:` frontmatter when an agent is invoked via `@mention` — strip `Task` only when the agent did not declare it
- macOS TCC popup still recurring on v2.1.153 — "2.1.153" would like to access data from other apps
- Claude Code leaks pty handles — exhausts pseudo-terminals on macOS after long session
- [Bug] Agent fails to execute or respond to user input
- [BUG] Persistent "Expecting value: line 1 column 1 (char 0)" JSON parse error after tool execution
- [Feature Request] Implement proactive unit test coverage recommendations for recurring bugs
- VS Code panel lacks status line + terminal lacks image paste in Codespaces, forcing a tradeoff
- `/powerup` only shows ~10 lessons — allow viewing the full catalog
- [Bug] Context contamination after auto-compact with unrelated email draft of Tejo/Sado Basin
- [Bug] VSCode terminal output displays corrupted text with garbled symbols
- [Feature Request] Add LaTeX/KaTeX math rendering to TUI
- [Bug] Sub-agent PR review results not validated by orchestrating agent
- Subagents on Pro 1M tier: trivial probes pass, real workloads fail at first tool call (probe-vs-workload divergence)
- Path-scoped rules and subdirectory CLAUDE.md not loaded when creating new files matching the pattern
- AskUserQuestion: cancelling during extended thinking poisons the whole session with 400 'thinking blocks cannot be modified' (2.1.153); concurrent prompts overwrite each other
- Ideas Missing from Claude Cowork Menu (Windows)
- [BUG_BOUNTY_SAFE_POC_2026] Prompt Injection RCE Test - Command Execution Proof
- [BUG] Cowork scheduled task: execution history row not showing after successful run
- Resuming an extended-thinking session fails permanently with 400 "thinking blocks cannot be modified" (transcript stores thinking text as empty but keeps signature)
- [Bug] Plugin-registered CwdChanged and FileChanged hooks don't fire (settings.json works) — v2.1.153
- Auto-archive on PR merge / branch delete — clarify autoArchiveSessions semantics or add dedicated opt-out
- `claude mcp add` echoes Authorization header value verbatim to stdout, leaks bearer tokens to terminal and session transcripts
- [BUG] Bug report — /insights skill, Claude Code The /insights skill outputs a malformed file path.
- Plugin slash commands render with '*'-inline format instead of two-column, despite matching official plugin shape
- [Bug] Unexpected long text generation without user input or goal
- [Bug] Thinking blocks causing task progression blocked without user modification
- [BUG] (Critical!) contamination by an unknown session simirlar to the report => [Bug] Context contamination after auto-compact with unrelated email draft of Tejo/Sado Basin #63137
- [Critical] Opus 4.7 Korean output degeneration — Korean grammar itself collapses in long contexts
- [BUG] Title: Autocompact buffer persists across /clear — wastes tokens for irrelevant old context
- [Bug] Auto-Compact loses user input before processing in conversation history
- Feature: per-invocation effort parameter + runtime session-config introspection for skills
- Auto-mode classifier mislabels Azure DevOps vote -5 as "Reject" when denying PR vote actions
- [BUG] Claude Desktop and Claude Code CLI never re-register MCP tools after OAuth 2.1 handshake on a remote HTTP server
- [BUG] Workspace file tags leak across sessions
- [BUG] Ink renderer crashes on Windows 11 build 26200 (Canary) duplicate banners, terminal mode leaks, mid-operation aborts
- [BUG] Claude Code Desktop issue
- PTY master fd leak in Claude desktop app exhausts macOS kern.tty.ptmx_max after ~2-3 days
- [BUG] Claude Code — Session Management after Unexpected Interruption
- [Windows] Cowork OpenTelemetry exporter does not initialize - zero events emitted to any destination, including loopback
- [Bug] Opus 4.7: 400 `thinking blocks ... cannot be modified` on long extended-thinking sessions, triggered by history-altering events (scheduled prompts / parallel tool-call cancellation)
- [BUG] API Error: Server is temporarily limiting requests (not your usage limit) · Rate limited
- Multi-plugin custom marketplace: only first plugin registered in installed_plugins.json, skills don't load
- [BUG] Git push through the SDK's git proxy fan-outs into ~500 GitHub REST API calls, exhausting the 5,000/hour budget after a handful of pushes
- [BUG] Claude took liberties it really shouldn't with my global config
- [BUG] Agent window focus lost after navigating with arrow keys, causing scroll deadlock
- [BUG] `--model` flag silently ignored in interactive sessions (works in `--print` only)
- [BUG] Dispatch permanently shows "desktop appears offline" on Windows 11 - never worked on first use
- feat: support per-command enableWeakerNetworkIsolation as safer alternative to dangerouslyDisableSandbox
- /code-review outputs a raw JSON array instead of readable findings
- [BUG] Cowork — Additional allowed domains ignored on Team plan; same domain works on Pro plan
- Haiku
- [Bug] False positive blocking beneficial outcomes in tool execution
- 3P Bedrock SSO: credentials silently expire without triggering re-auth on day 2+
- CLAUDE_AUTOCOMPACT_PCT_OVERRIDE in settings.json env block silently ignored by autocompact logic
- Auto-compaction deletes main session JSONL before verifying summary completion, causing data loss
- [Bug] Claude Code not executing stated actions or producing expected results
- [FEATURE] Deferred Messages — Queue Input for End of Turn
- [BUG] Up/Down arrows in input box navigate history instead of moving cursor — regression in 2.1.149+
- Cancelling a parallel tool-call batch corrupts thinking blocks -> 400 "thinking blocks cannot be modified" permanently wedges the session
- Claude Code caused data loss, then contradicted itself about recovery (two incidents, one session)
- [Bug] Unclear error messages from Claude Code CLI
- [Bug] Agent tool rejecting due to context size limit exceeded
- claude agents: daemon and bg-spare processes spin at ~100% CPU when idle
- [BUG] Compaction fails with "context window limit" error even when context usage is low (e.g., 20%) — regression in v2.1.153
- Remote Control entitlement lost after May 27-28 incident — `Error: Remote Control is not yet enabled for your account` on active Max subscription
- PreToolUse hook exit code 2 does not block Write tool
- [Bug] Thinking blocks in latest assistant message are immutable
- GUI: dispatch file:// and custom-scheme clicks to OS shell handler
- Show current model in statusLine by default
- [Bug] Agent console becomes unresponsive to keyboard input after multiple agents initialized
- [FEATURE] PreToolUse hooks should have a way of updating the environment
- [Bug] Unable to start or use Claude Code CLI
- [BUG] Repository not visible in Claude Code web repo picker
- Session permanently wedged on 400 "thinking blocks cannot be modified" after parallel tool_results
- [Bug] @ autocomplete loses sibling repos after a file edit in multi-repo workspace
- Unclear error message when creating sub-agent without authentication
- [Bug] Anthropic API errors causing frequent failures and high token usage
- [BUG] @ mention file picker only shows packages, not individual files (desktop app - Code tab)
- [Bug] TUI panel footer remains sticky and consumes excessive terminal space
- PR-status polling exhausts GitHub GraphQL rate limit on repos with many open PRs
- [BUG] Windows: welcome panel not shown in some project folders (2.1.153)
- [Bug] Anthropic API Error: thinking blocks corrupted during context compaction with extended thinking enabled
- API 400 "thinking blocks cannot be modified" permanently bricks session during agent activation (interleaved thinking + tool use)
- Right-click Copy copies the whole message instead of the selection; pasted text retains dark background
- Mid-session model switch corrupts conversation when extended thinking is enabled (API 400: 'thinking blocks cannot be modified')
- [BUG] Markdown file links in chat output do not open files when clicked (VS Code extension)
- Stuck retry loop: `400 thinking blocks cannot be modified` on large interleaved-thinking turns using AskUserQuestion
- [FEATURE] Prompt user for approval before auto-compaction proceeds
- Custom MCP connectors not attachable to scheduled routines — no UUID discovery path
- [BUG] Claude in Chrome — Navigation blocked for teams.cloud.microsoft and outlook.cloud.microsoft after Microsoft domain migration**
- [BUG] Claude Desktop — Personal plugins panel renders list but is entirely non-interactive (macOS, v1.9255.2)
- [Bug] error when using Workflows
- [BUG] Persistent "update available" notification despite being on latest version
- [BUG] Sweep Agent from /code-review never completes
- [Bug] Tool calls not executing or returning results
- [FEATURE] Cloud-synced memory and settings across machines
- [Bug] Terminal UI freezes when Ctrl+O view exits during interactive prompt in plan mode
- Continuous api errors when using claude code with Opus 4.7 with thinking on low
- [Feature Request] Add support for installing and using previous Claude Code versions
- [Bug] Extended Thinking: Summarized thinking blocks fail signature validation when resent to API
- [Bug] Anthropic API Error: 'thinking' blocks cannot be modified
- [Bug] Anthropic API Error: Thinking blocks cannot be modified with extended thinking mode
- Feature request: Lazy/on-demand MCP server connections
- [Bug] Tool Arguments Parsed as String Instead of Object
- [Bug] Anthropic API Error: Insufficient context provided
- [Bug] Claude Opus occasionally uses moskovian(russian) orthography instead of Ukrainian in system-prompted responses
- Opus 4.8: backgrounded task completions (subagents AND Bash) crash with 400 "thinking blocks cannot be modified"
- [Bug] Opus 4.7 fabricates stable preferences ("my default") to rationalize arbitrary choices when challenged
- [Bug] Unable to update Claude Code CLI
- [BUG] Desktop app: /remote-control mints link + connects bridge (main.log) but in-chat link/QR panel never renders
- Feature: sessionColor and sessionName in .claude/settings.json
- [BUG] Anthropic API error: thinking blocks
- [FEATURE] Support Remote MCPs in Cowork as in Claude Code
- [Bug] Anthropic API Error: 400 Bad Request with Redacted Thinking - 0 4.7 & 4.8
- [Bug] Anthropic API Error: Cannot modify thinking blocks from different model versions
- Interleaved thinking + multi-tool turn corrupts thinking block (text blanked, signature kept) → permanent 400 'blocks must remain as they were'
- [BUG] Mode/permission changes mid-tool-loop (effortLevel: xhigh) poisons entire session
- Session failure log: Opus 4.6 ignores its own rules for an entire session
- [BUG] "400 Guardrail was enabled" error when using Claude Opus 4.8 with AWS Bedrock
- [Feature Request] Add subagent approach selection option to avoid accidental feedback
- Persistent 400 'thinking blocks in the latest assistant message cannot be modified' — interleaved thinking persisted with empty text + signature bricks sessions
- [BUG] DesktopvsApp
- [BUG] Opus 4.7 cache hit rate collapse after May 27 incident — Messages 1.1k→88.9k in 9 minutes, $630/session
- [Bug] Anthropic API Error: Invalid thinking block format
- [BUG] FUCK CLAUDE
- Opus 4.8 extended thinking: Stop hook block re-entry corrupts thinking blocks → 400
- [Bug] 4.8 Fails when accessing previous model history
- [Bug] Unintended File Modifications During Execution
- [DOCS] Model configuration docs omit lean system prompt default scope and model exceptions
- Add "Always allow globally" option to permission prompts
- Server-side model upgrade (Opus 4.7→4.8) wedges in-flight sessions with `thinking blocks cannot be modified` 400
- [DOCS] AskUserQuestion docs missing multiple-choice prompt decision threshold
- [DOCS] Agent view docs omit shell-command background session launch syntax
- [DOCS] Agent view dispatch input docs incorrectly imply `/logout` dispatches as a prompt
- [DOCS] Claude in Chrome docs omit connected-browser selection behavior
- [DOCS] Plugin docs omit `defaultEnabled: false` for opt-in plugins
- Feature Request: Customizable chat text colors for user and assistant messages
- [DOCS] `/plugin` Discover tab docs omit directory-based suggested plugin pins
- VSCode Chrome integration silently fails: 3 distinct bugs
- [DOCS] MCP stdio docs omit session environment variables
- [Bug] Anthropic API error on second request within session with Claude Opus 4.8
- Cowork emits a blank session "index" handoff on focus when a CLI session is paused awaiting input
- [DOCS] MCP docs omit `claude mcp list/get` pending-approval output for unapproved project servers
- [BUG] /compact fails with 400 error when last assistant turn contains thinking blocks
- [DOCS] `/claude-api` docs omit Opus 4.8 migration guidance
- [DOCS] Fast mode docs still recommend deprecated Opus 4.6 override variable
- [DOCS] Bash tool docs omit `$TMPDIR` consistency across sandboxed and unsandboxed commands
- [Bug] Anthropic API Error: 400 Bad Request on Extended Thinking
- [DOCS] Background session docs omit worktree-isolation behavior for spawned subagents
- Built-in mechanistic self-verification of verifiable claims (symmetric to the auto permission gate)
- [DOCS] Worktree docs do not clarify `worktree.baseRef: "head"` inside linked worktrees
- [BUG] Excessive RAM usage with multiple parallel chats (~10 sessions → 30 GB memory pressure, macOS OOM)
- [DOCS] Managed MCP policy docs omit invalid `allowedMcpServers`/`deniedMcpServers` entry behavior
- [DOCS] Effort docs omit `CLAUDE_CODE_ALWAYS_ENABLE_EFFORT` unsupported-model behavior
- Regression (2.1.147–2.1.150?): resuming an extended-thinking session after a CC update/model-switch → unrecoverable 400, session bricked
- [DOCS] Windows updater docs omit `claude.exe` in-use recovery guidance
- [DOCS] VS Code auto mode docs still tie mode-picker visibility to bypass-permissions setting
- [DOCS] MCP docs omit `/mcp` tool list and detail rendering behavior
- [DOCS] Fine-grained tool streaming docs still describe provider opt-in behavior
- bypassPermissions: session startup reads flat pref, GUI toggle writes per-account pref — they never sync
- [BUG] Claude Desktop Code tab causes disk write limit violation — 8.5GB in 11 min, macOS kills app (M5, v1.9659.1)
- Ultrareview v2.1.96: docs describe /tasks command + claude ultrareview --json subcommand that don't exist; findings hard to read after completion
- I'd be happy to help create a GitHub issue title, but I don't see the error message in your message. Could you please share the specific error you're encountering? That way I can generate an accurate and descriptive issue title for you.
- [BUG] Claude in Chrome `file_upload` rejects all scheduled-task sessions with misleading error (real cause: INVALID_SESSION)
- Extended thinking: signed thinking block 'cannot be modified' (400) permanently wedges session
- RTL text support for Hebrew (and Arabic) in Claude Code
- [Bug] Random errors occurring across multiple operations