TestBlankTool

A simple implementation of the Tool class that returns the input string argument as the result. This tool is used for testing purposes only.

Parameters

name

An optional name for the tool. If not provided, it defaults to "blank-tool".

Constructors

Link copied to clipboard
constructor(name: String? = null)

Types

Link copied to clipboard
data class Args(val args: String = "")

Represents the arguments for the TestBlankTool.

Properties

Link copied to clipboard
Link copied to clipboard
open override val description: String
Link copied to clipboard
Link copied to clipboard
open override val name: String
Link copied to clipboard
open override val resultSerializer: KSerializer<String>

Functions

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open suspend override fun execute(args: TestBlankTool.Args): String
Link copied to clipboard
suspend fun executeUnsafe(args: Any?): String