UNPKG

box-ui-elements

Version:
19 lines (15 loc) 484 B
/** * @flow * @author Box */ import { AiAgentBasicTextTool } from './AiAgentBasicTextTool'; import type { AiAgentLongTextTool } from './AiAgentLongTextTool'; export type AiAgentExtractStructuredTypeField = 'ai_agent_extract_structured'; export interface AiAgentExtractStructured { /** * The type of AI agent to be used for extraction. */ +type: AiAgentExtractStructuredTypeField; +long_text?: AiAgentLongTextTool; +basic_text?: AiAgentBasicTextTool; }