Class CustomTool
A custom tool that processes input using a specified format.
Implements
Inherited Members
Namespace: Glitch9.AIDevKit
Assembly: Glitch9.AIDevKit.dll
Syntax
public sealed class CustomTool : Tool, IHasName
Properties
| Edit this page View SourceDescription
Optional. Optional description of the custom tool.
Declaration
[JsonProperty("description")]
public string Description { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Format
Optional. The input format for the custom tool. Default is unconstrained text.
Declaration
[JsonProperty("format")]
public CustomToolFormat Format { get; set; }
Property Value
| Type | Description |
|---|---|
| CustomToolFormat |
Name
Required. The name of the custom tool.
Declaration
[JsonProperty("name")]
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |