UNPKG

box-node-sdk

Version:

Official SDK for Box Plaform APIs

15 lines (14 loc) 415 B
import * as schemas from '.'; /** * AI agent basic text generation tool * * AI agent basic tool used to generate text. */ export interface AiAgentBasicGenTool extends schemas.AiAgentLongTextTool { /** * How the content should be included in a request to the LLM. * When passing this parameter, you must include `{content}`. * Example: ---{content}--- */ content_template?: string; }