Brain: Memory durchsuchen SELECT
Tool-Name
tool
select_brain_memory
Parameter
| Parameter | Typ | Pflicht | Beschreibung |
|---|---|---|---|
agent_ID |
integer |
Nein | Filter auf Agent |
detailgrad |
string |
Nein | Kommagetrennt, z.B. stammdaten,texte |
ID |
integer |
Nein | Element-ID (optional) |
memory_typ |
string |
Nein | arbeit | entscheidung | erfahrung | agent |
query |
string |
Nein | Volltextsuche in Titel und Inhalt |
scope_ID |
string |
Nein | ID des Elements oder Kontexts |
scope_modul |
string |
Nein | Technischer Modulname |
scope_typ |
string |
Nein | global | modul | benutzer | agent | room | element | session |
suchtyp |
string |
Nein |
Fixer Suchtyp: brain_memory Standard: brain_memory |
Input Schema
json
{
"type": "object",
"properties": {
"ID": {
"type": "integer",
"description": "Element-ID (optional)"
},
"detailgrad": {
"type": "string",
"description": "Kommagetrennt, z.B. stammdaten,texte"
},
"query": {
"type": "string",
"description": "Volltextsuche in Titel und Inhalt"
},
"memory_typ": {
"type": "string",
"description": "arbeit | entscheidung | erfahrung | agent"
},
"agent_ID": {
"type": "integer",
"description": "Filter auf Agent"
},
"scope_typ": {
"type": "string",
"description": "global | modul | benutzer | agent | room | element | session"
},
"scope_modul": {
"type": "string",
"description": "Technischer Modulname"
},
"scope_ID": {
"type": "string",
"description": "ID des Elements oder Kontexts"
},
"suchtyp": {
"type": "string",
"description": "Fixer Suchtyp: brain_memory",
"default": "brain_memory"
}
}
}
Beispiel-Aufruf
json
{
"tool": "select_brain_memory",
"arguments": {
"agent_ID": 1,
"detailgrad": "...",
"ID": 1,
"memory_typ": "...",
"query": "...",
"scope_ID": "...",
"scope_modul": "...",
"scope_typ": "...",
"suchtyp": "brain_memory"
}
}