UNPKG

@progress/kendo-angular-conversational-ui

Version:

Kendo UI for Angular Conversational UI components

26 lines (25 loc) 819 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Describes the output returned for a prompt. */ export interface InlineAIPromptOutput { /** * The unique identifier for the output. */ id: number | string; /** * The generated text content. */ output: string; /** * The prompt that starts the output generation. */ prompt: string; /** * The command ID if the prompt generation is triggered by a command. */ commandId?: string | number; }