Uses of Interface
com.google.genkit.ai.agent.ClientTransform
Packages that use ClientTransform
Package
Description
This package provides types for the Genkit agents feature, including enums and models for agent
state snapshots, agent execution lifecycle, and agent-related operations.
-
Uses of ClientTransform in com.google.genkit.agent
Methods in com.google.genkit.agent that return ClientTransformModifier and TypeMethodDescriptionAgentConfig.getClientTransform()Returns the client-transform applied to session state before returning it to the caller in client-managed mode.Methods in com.google.genkit.agent with parameters of type ClientTransformModifier and TypeMethodDescriptionAgentConfig.Builder.clientTransform(ClientTransform<S> clientTransform) Sets the client-transform applied to session state before returning it to the caller in client-managed mode. -
Uses of ClientTransform in com.google.genkit.ai.agent
Methods in com.google.genkit.ai.agent that return ClientTransformModifier and TypeMethodDescriptionCustomAgentConfig.getClientTransform()Returns the client-transform applied to session state before returning it to the caller in client-managed mode.Methods in com.google.genkit.ai.agent with parameters of type ClientTransformModifier and TypeMethodDescriptionCustomAgentConfig.Builder.clientTransform(ClientTransform<S> clientTransform) Sets the client-transform applied to session state before returning it to the caller in client-managed mode.Constructors in com.google.genkit.ai.agent with parameters of type ClientTransformModifierConstructorDescriptionAgent(BidiActionImpl<AgentInput, AgentOutput<S>, AgentStreamChunk, AgentInit<S>> impl, SessionStore<S> store, boolean serverManaged, Action<?, ?, ?> snapshotAction, Action<?, ?, ?> abortAction, ClientTransform<S> clientTransform, SessionStoreOptions opts, String name, String description, Registry registry) Constructs an Agent.