box-node-sdk
Version:
Official SDK for Box Platform APIs
11 lines (10 loc) • 574 B
TypeScript
import { AiAgentLongTextToolTextGen } from './aiAgentLongTextToolTextGen';
import { SerializedData } from '../serialization/json';
export type AiAgentBasicGenTool = AiAgentLongTextToolTextGen & {
/**
* How the content should be included in a request to the LLM.
* Input for `{content}` is optional, depending on the use. */
readonly contentTemplate?: string;
};
export declare function serializeAiAgentBasicGenTool(val: AiAgentBasicGenTool): SerializedData;
export declare function deserializeAiAgentBasicGenTool(val: SerializedData): AiAgentBasicGenTool;