@progress/kendo-angular-conversational-ui
Version:
Kendo UI for Angular Conversational UI components
18 lines (17 loc) • 640 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Arguments for the `promptRequest` event.
*/
export interface InlineAIPromptRequestEvent {
/**
* The user prompt input.
*/
prompt: string;
/**
* If `true`, the event is triggered by the built-in **Retry** action button.
*/
isRetry?: boolean;
}