mirror of
https://github.com/Alkatrazz24/Funk-lab.git
synced 2026-07-08 13:54:41 +02:00
docs: ask-agent + skills Hermes — documentation complète
- admin/ask-agent.md (nouveau) : doc détaillée ask-agent CLI, architecture 4 agents, skill agent-delegation, gestion skills dans les profils Hermes, dépannage, points d'attention - admin/hermes.md : section Skills avec point d'attention double emplacement (skills/ + profiles/<profil>/skills/), tableau skills custom Funk, restart obligatoire après modif skill - admin/litellm.md : flux et modèles mis à jour (qwen3-8b, qwen3-1.7b-system/monitor), lien vers ask-agent.md - admin/README.md : entrée ask-agent.md ajoutée Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
515933c949
commit
9f027cb833
4 changed files with 275 additions and 9 deletions
|
|
@ -8,14 +8,16 @@ Il route les requêtes OpenAI-compatibles vers le bon backend selon le modèle d
|
|||
## Flux
|
||||
|
||||
```
|
||||
Hermes / Open WebUI / n8n
|
||||
Hermes / ask-agent / Open WebUI / n8n
|
||||
│
|
||||
▼ http://127.0.0.1:4000/v1 (Authorization: Bearer lm-studio)
|
||||
LiteLLM Proxy
|
||||
├── hermes-default → qwen2.5-14b-instruct (défaut Hermes)
|
||||
├── qwen2.5-14b-instruct → llama-server gpu-01 :1234 (local, gratuit)
|
||||
├── claude-sonnet-4-6 → api.anthropic.com (cloud, payant)
|
||||
└── claude-opus-4-7 → api.anthropic.com (cloud, payant)
|
||||
├── hermes-default → qwen3-8b → llama-server gpu-01 :1234 (GPU)
|
||||
├── qwen3-8b → llama-server gpu-01 :1234 (GPU, gratuit)
|
||||
├── qwen3-1.7b-system → llama-server gpu-01 :1236 (CPU 14 threads, gratuit)
|
||||
├── qwen3-1.7b-monitor → llama-server gpu-01 :1237 (CPU 14 threads, gratuit)
|
||||
├── claude-sonnet-4-6 → api.anthropic.com (cloud, payant)
|
||||
└── claude-opus-4-7 → api.anthropic.com (cloud, payant)
|
||||
```
|
||||
|
||||
---
|
||||
|
|
@ -36,11 +38,16 @@ sudo journalctl -u litellm -n 50
|
|||
|
||||
| Nom dans l'API | Backend | Coût |
|
||||
|---|---|---|
|
||||
| `hermes-default` | Alias switchable (Qwen par défaut) | Selon backend actif |
|
||||
| `qwen2.5-14b-instruct` | llama-server gpu-01 (ROCm 7.x) | Gratuit |
|
||||
| `hermes-default` | qwen3-8b sur gpu-01 :1234 (GPU) | Gratuit |
|
||||
| `qwen3-8b` | llama-server gpu-01 :1234 (ROCm 7.x) | Gratuit |
|
||||
| `qwen3-1.7b-system` | llama-server gpu-01 :1236 (CPU, 14 threads) | Gratuit |
|
||||
| `qwen3-1.7b-monitor` | llama-server gpu-01 :1237 (CPU, 14 threads) | Gratuit |
|
||||
| `claude-sonnet-4-6` | Anthropic API | ~$3/$15 par million tokens in/out |
|
||||
| `claude-opus-4-7` | Anthropic API | Plus cher, meilleur raisonnement |
|
||||
|
||||
> `qwen3-1.7b-system` et `qwen3-1.7b-monitor` sont utilisés par `ask-agent system` et
|
||||
> `ask-agent monitor` — voir [ask-agent.md](ask-agent.md).
|
||||
|
||||
---
|
||||
|
||||
## Switch rapide avec hermes-switch
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue