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