ToolResource
Represents a tool resource required by the agent
Class Diagram
Section titled “Class Diagram”---
title: ToolResource
config:
look: handDrawn
theme: colorful
class:
hideEmptyMembersBox: true
---
classDiagram
class Resource {
+string name
+string kind
}
Resource <|-- ToolResource
class ToolResource {
+string kind
+string id
+dictionary options
}
Yaml Example
Section titled “Yaml Example”kind: toolid: web-searchoptions: myToolResourceProperty: myValueProperties
Section titled “Properties”| Name | Type | Description |
|---|---|---|
| kind | string | The kind identifier for tool resources |
| id | string | The unique identifier of the tool resource |
| options | dictionary | Configuration options for the tool resource |