UNPKG

adk-typescript

Version:

TypeScript port of Google's Agent Development Kit (ADK)

11 lines (10 loc) 485 B
import { BaseAgent } from '../../agents/BaseAgent'; /** * Creates empty strings for all non-initialized state variables * referenced in agent instructions * * @param agent The root agent to process * @param initializedStates Optional object with already initialized states * @returns An object with empty strings for all non-initialized state variables */ export declare function createEmptyState(agent: BaseAgent, initializedStates?: Record<string, any>): Record<string, any>;