Finished

class Finished<Output>(val result: Output) : AIAgentState<Output> (source)

Represents the final state of a computation or process with its resulting output.

Parameters

Output

The type of the result produced by the finished computation or process.

Constructors

Link copied to clipboard
constructor(result: Output)

Properties

Link copied to clipboard

The computed result of the finished process.

Functions

Link copied to clipboard
open override fun copy(): AIAgentState<Output>

Creates and returns a copy of the current state object.