UNPKG

box-node-sdk

Version:

Official SDK for Box Platform APIs

15 lines (14 loc) 776 B
import { AiLlmEndpointParams } from './aiLlmEndpointParams'; import { SerializedData } from '../serialization/json'; export interface AiAgentSpreadsheetTool { /** * The model used for the AI agent for spreadsheets. For specific model values, see the [available models list](https://developer.box.com/guides/box-ai/supported-models). */ readonly model?: string; /** * The number of tokens for completion. */ readonly numTokensForCompletion?: number; readonly llmEndpointParams?: AiLlmEndpointParams; readonly rawData?: SerializedData; } export declare function serializeAiAgentSpreadsheetTool(val: AiAgentSpreadsheetTool): SerializedData; export declare function deserializeAiAgentSpreadsheetTool(val: SerializedData): AiAgentSpreadsheetTool;