UUIDTool

org.llm4s.toolapi.builtin.core.UUIDTool
object UUIDTool

Tool for generating UUIDs.

Generates standard UUID v4 (random) identifiers.

Attributes

Example
import org.llm4s.toolapi.builtin.core.UUIDTool
val tools = new ToolRegistry(Seq(UUIDTool.tool))
agent.run("Generate a unique ID for this transaction", tools)
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
UUIDTool.type

Members list

Type members

Classlikes

case class UUIDsResult(uuids: Seq[UUIDResult])

Result containing multiple UUIDs.

Result containing multiple UUIDs.

Attributes

Companion
object
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
object UUIDsResult

Attributes

Companion
class
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type

Value members

Concrete fields

val tool: ToolFunction[Map[String, Any], UUIDsResult]

The UUID generator tool instance.

The UUID generator tool instance.

Attributes