merge: issue/0021-threads-default-config — habilitar threads en agentes y scaffold
This commit is contained in:
@@ -112,6 +112,14 @@ personality:
|
|||||||
prefix: "🤖" # emoji del bot
|
prefix: "🤖" # emoji del bot
|
||||||
```
|
```
|
||||||
|
|
||||||
|
**Threads** (habilitado por defecto en el scaffold):
|
||||||
|
```yaml
|
||||||
|
matrix:
|
||||||
|
threads:
|
||||||
|
enabled: true # responder en threads cuando el mensaje viene de un thread
|
||||||
|
auto_thread: false # true para crear thread automático por cada conversación nueva
|
||||||
|
```
|
||||||
|
|
||||||
Referencia completa del schema: `internal/config/schema.go`
|
Referencia completa del schema: `internal/config/schema.go`
|
||||||
|
|
||||||
### 3. `agents/<agent-id>/prompts/system.md` — System prompt
|
### 3. `agents/<agent-id>/prompts/system.md` — System prompt
|
||||||
|
|||||||
@@ -166,6 +166,10 @@ matrix:
|
|||||||
unauthorized_response: silent # silent | explicit
|
unauthorized_response: silent # silent | explicit
|
||||||
min_power_level: 0
|
min_power_level: 0
|
||||||
|
|
||||||
|
threads:
|
||||||
|
enabled: true # responder en threads cuando el mensaje viene de un thread
|
||||||
|
auto_thread: false # true para crear thread automático por cada conversación nueva
|
||||||
|
|
||||||
# ============================================
|
# ============================================
|
||||||
# COMUNICACIÓN INTER-AGENTES
|
# COMUNICACIÓN INTER-AGENTES
|
||||||
# ============================================
|
# ============================================
|
||||||
|
|||||||
@@ -169,6 +169,10 @@ matrix:
|
|||||||
unauthorized_response: silent # silent | explicit
|
unauthorized_response: silent # silent | explicit
|
||||||
min_power_level: 0 # cualquiera puede hablar con el assistant
|
min_power_level: 0 # cualquiera puede hablar con el assistant
|
||||||
|
|
||||||
|
threads:
|
||||||
|
enabled: true # responder en threads cuando el mensaje viene de un thread
|
||||||
|
auto_thread: false # true para crear thread automático por cada conversación nueva
|
||||||
|
|
||||||
# ============================================
|
# ============================================
|
||||||
# COMUNICACIÓN INTER-AGENTES
|
# COMUNICACIÓN INTER-AGENTES
|
||||||
# ============================================
|
# ============================================
|
||||||
|
|||||||
@@ -151,6 +151,10 @@ matrix:
|
|||||||
ignore_users: []
|
ignore_users: []
|
||||||
min_power_level: 0
|
min_power_level: 0
|
||||||
|
|
||||||
|
threads:
|
||||||
|
enabled: true # responder en threads cuando el mensaje viene de un thread
|
||||||
|
auto_thread: false # true para crear thread automático por cada conversación nueva
|
||||||
|
|
||||||
# ============================================
|
# ============================================
|
||||||
# COMUNICACION INTER-AGENTES
|
# COMUNICACION INTER-AGENTES
|
||||||
# ============================================
|
# ============================================
|
||||||
|
|||||||
@@ -170,6 +170,10 @@ matrix:
|
|||||||
ignore_users: []
|
ignore_users: []
|
||||||
min_power_level: 0
|
min_power_level: 0
|
||||||
|
|
||||||
|
threads:
|
||||||
|
enabled: true # responder en threads cuando el mensaje viene de un thread
|
||||||
|
auto_thread: false # true para crear thread automático por cada conversación nueva
|
||||||
|
|
||||||
# ============================================
|
# ============================================
|
||||||
# INTER-AGENTES
|
# INTER-AGENTES
|
||||||
# ============================================
|
# ============================================
|
||||||
|
|||||||
Reference in New Issue
Block a user