Skip to content

Commit ce67379

Browse files
Merge pull request #349 from CrewForm/feat/ag-ui-wizard
feat(ag-ui): add multi-step wizard interactions
2 parents 94eb322 + 80ed88c commit ce67379

8 files changed

Lines changed: 1535 additions & 25 deletions

File tree

src/components/agui/InteractionModal.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,14 @@ function formatValue(value: unknown, fallback = '—'): string {
1616

1717
export interface InteractionRequest {
1818
interactionId: string
19-
interactionType: 'approval' | 'confirm_data' | 'choice'
19+
interactionType: 'approval' | 'confirm_data' | 'choice' | 'wizard'
2020
title: string
2121
description?: string
2222
data?: Record<string, unknown>
2323
choices?: { id: string; label: string; description?: string }[]
2424
timeoutMs: number
2525
requestedAt: number
26+
wizard?: unknown
2627
}
2728

2829
interface InteractionModalProps {

0 commit comments

Comments
 (0)