diff options
| author | A.J. Shulman <Shulman.aj@gmail.com> | 2025-01-23 11:51:50 -0500 |
|---|---|---|
| committer | A.J. Shulman <Shulman.aj@gmail.com> | 2025-01-23 11:51:50 -0500 |
| commit | 99e2a1728b9b97d30f5e0fffe6a10201bdee49c2 (patch) | |
| tree | 33b0e487348883582dd2479e55739cf75bf79f19 /src/client/views/nodes/chatbot/tools | |
| parent | 971d107574031885c17c339d39c4fd813682cc02 (diff) | |
added commenting
Diffstat (limited to 'src/client/views/nodes/chatbot/tools')
| -rw-r--r-- | src/client/views/nodes/chatbot/tools/DictionaryTool.ts | 3 | ||||
| -rw-r--r-- | src/client/views/nodes/chatbot/tools/ReplicateUserTaskTool.ts | 0 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/client/views/nodes/chatbot/tools/DictionaryTool.ts b/src/client/views/nodes/chatbot/tools/DictionaryTool.ts index 377101641..3493f38d7 100644 --- a/src/client/views/nodes/chatbot/tools/DictionaryTool.ts +++ b/src/client/views/nodes/chatbot/tools/DictionaryTool.ts @@ -20,6 +20,9 @@ const dictionaryToolInfo: ToolInfo<DictionaryToolParamsType> = { description: 'Fetches the definition of a given word using an open dictionary API.', }; +/** + * DictionaryTool is a tool that fetches the definition of a given word using an open dictionary API. + */ export class DictionaryTool extends BaseTool<DictionaryToolParamsType> { constructor() { super(dictionaryToolInfo); diff --git a/src/client/views/nodes/chatbot/tools/ReplicateUserTaskTool.ts b/src/client/views/nodes/chatbot/tools/ReplicateUserTaskTool.ts deleted file mode 100644 index e69de29bb..000000000 --- a/src/client/views/nodes/chatbot/tools/ReplicateUserTaskTool.ts +++ /dev/null |
