AI Tool Create

Table of Contents

Description

Creates or overwrites an AI Tool that can be called by a LLM agent.

Example

{
  "function_call": {
    "name": "AIToolCreate",
    "arguments": {
      "Name": "EchoString",
      "Description": "Returns the specified string as output for testing/demo purposes.",
      "Documentation": "Accepts a single string parameter and returns it unchanged. Used to verify that AI tool creation and execution are functioning properly within SpecterInsight.",
      "Definition": "param([Parameter(Mandatory=$true, HelpMessage='The string to echo back as output.')][string]$InputString); $InputString"
    }
  }
}
Scroll to Top