Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions sdks/typescript/packages/client/src/agent/types.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import { Message, RunAgentInput, State } from "@ag-ui/core";

/** Normalized debug configuration for the AG-UI agent. */
export interface ResolvedAgentDebugConfig {
enabled: boolean;
events: boolean;
lifecycle: boolean;
verbose: boolean;
}
export type ResolvedAgentDebugConfig =
| boolean
| {
enabled: boolean;
events: boolean;
lifecycle: boolean;
verbose: boolean;
};

/** Debug input — boolean shorthand or granular config. */
export type AgentDebugConfig =
Expand Down
Loading