Suche nach Tutorials SELECT
Tool-Name
tool
select_tutorial
Parameter
| Parameter | Typ | Pflicht | Beschreibung |
|---|---|---|---|
detailgrad |
string |
Nein | Kommagetrennt, z.B. stammdaten,texte |
favorit |
string |
Nein | 0 oder 1 |
ID |
integer |
Nein | Element-ID (optional) |
kategorie_ID |
string |
Nein | Suche nach einer Tutorial Kategorie ID |
onlinefreigabe |
string |
Nein | 0 oder 1 |
produkt_ID |
string |
Nein | Suche nach verknuepfter Produkt ID |
suchtyp |
string |
Nein |
Fixer Suchtyp: tutorial Standard: tutorial |
titel |
string |
Nein | Suche nach Tutorial Titel |
Input Schema
json
{
"type": "object",
"properties": {
"ID": {
"type": "integer",
"description": "Element-ID (optional)"
},
"detailgrad": {
"type": "string",
"description": "Kommagetrennt, z.B. stammdaten,texte"
},
"titel": {
"type": "string",
"description": "Suche nach Tutorial Titel"
},
"kategorie_ID": {
"type": "string",
"description": "Suche nach einer Tutorial Kategorie ID"
},
"produkt_ID": {
"type": "string",
"description": "Suche nach verknuepfter Produkt ID"
},
"onlinefreigabe": {
"type": "string",
"description": "0 oder 1"
},
"favorit": {
"type": "string",
"description": "0 oder 1"
},
"suchtyp": {
"type": "string",
"description": "Fixer Suchtyp: tutorial",
"default": "tutorial"
}
}
}
Beispiel-Aufruf
json
{
"tool": "select_tutorial",
"arguments": {
"detailgrad": "...",
"favorit": "...",
"ID": 1,
"kategorie_ID": "...",
"onlinefreigabe": "...",
"produkt_ID": "...",
"suchtyp": "tutorial",
"titel": "..."
}
}