box-ui-elements
Version:
Box UI Elements
19 lines (15 loc) • 484 B
JavaScript
/**
* @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;
}