Benutzer-Werkzeuge

Webseiten-Werkzeuge


openai

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen Revision Vorhergehende Überarbeitung
Nächste Überarbeitung
Vorhergehende Überarbeitung
openai [2025/12/21 22:08]
jango
openai [2025/12/29 22:42] (aktuell)
admin [MCP Server]
Zeile 513: Zeile 513:
 </code> </code>
  
-=====MCP=====+=====Tool Calling===== 
 + 
 +OpenAI 
 +<code json> 
 +
 +   { 
 +      "type":"function", 
 +      "name":"execute_cmd_command", 
 +      "description":"Gib einen batch Befehl an für Windows CMD.", 
 +      "parameters":
 +         "type":"object", 
 +         "properties":
 +            "command":
 +               "type":"string" 
 +            } 
 +         }, 
 +         "required":
 +            "command" 
 +         ], 
 +         "additionalProperties":false 
 +      }, 
 +      "strict":true 
 +   }, 
 +   { 
 +      "type":"function", 
 +      "name":"execute_powershell_command", 
 +      "description":"Gib einen powershell Befehl an für Windows powershell.", 
 +      "parameters":
 +         "type":"object", 
 +         "properties":
 +            "command":
 +               "type":"string" 
 +            } 
 +         }, 
 +         "required":
 +            "command" 
 +         ], 
 +         "additionalProperties":false 
 +      }, 
 +      "strict":true 
 +   } 
 +
 +</code> 
 + 
 +LM Studio 
 +<code json> 
 +
 +   { 
 +      "type":"function", 
 +      "function":
 +         "name":"execute_cmd_command", 
 +         "description":"Gib einen batch Befehl an für Windows CMD.", 
 +         "parameters":
 +            "type":"object", 
 +            "properties":
 +               "command":
 +                  "type":"string" 
 +               } 
 +            }, 
 +            "required":
 +               "command" 
 +            ], 
 +            "additionalProperties":false 
 +         }, 
 +         "strict":true 
 +      } 
 +   }, 
 +   { 
 +      "type":"function", 
 +      "function":
 +         "name":"execute_powershell_command", 
 +         "description":"Gib einen powershell Befehl an für Windows powershell.", 
 +         "parameters":
 +            "type":"object", 
 +            "properties":
 +               "command":
 +                  "type":"string" 
 +               } 
 +            }, 
 +            "required":
 +               "command" 
 +            ], 
 +            "additionalProperties":false 
 +         }, 
 +         "strict":true 
 +      } 
 +   } 
 +
 +</code> 
 + 
 + 
 +=====MCP Server===== 
 + 
 +Siehe [[MCP]]
  
 <code json> <code json>
openai.1766351329.txt.gz · Zuletzt geändert: 2025/12/21 22:08 von jango