UNPKG

box-node-sdk

Version:

Official SDK for Box Platform APIs

15 lines 838 B
import { AiLlmEndpointParams } from './aiLlmEndpointParams'; import { SerializedData } from '../serialization/json'; export interface AiAgentBasicTextToolBase { /** * The model used for the AI agent for basic text. 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 serializeAiAgentBasicTextToolBase(val: AiAgentBasicTextToolBase): SerializedData; export declare function deserializeAiAgentBasicTextToolBase(val: SerializedData): AiAgentBasicTextToolBase; //# sourceMappingURL=aiAgentBasicTextToolBase.d.ts.map