UNPKG

box-node-sdk

Version:

Official SDK for Box Platform APIs

115 lines 5.32 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.serializeAiStudioAgentBasicGenToolResponse = serializeAiStudioAgentBasicGenToolResponse; exports.deserializeAiStudioAgentBasicGenToolResponse = deserializeAiStudioAgentBasicGenToolResponse; const aiLlmEndpointParams_1 = require("./aiLlmEndpointParams"); const aiAgentLongTextToolTextGen_1 = require("./aiAgentLongTextToolTextGen"); const aiStudioAgentBasicGenTool_1 = require("./aiStudioAgentBasicGenTool"); const errors_1 = require("../box/errors"); const json_1 = require("../serialization/json"); const json_2 = require("../serialization/json"); const json_3 = require("../serialization/json"); const json_4 = require("../serialization/json"); const json_5 = require("../serialization/json"); function serializeAiStudioAgentBasicGenToolResponse(val) { const base = (0, aiStudioAgentBasicGenTool_1.serializeAiStudioAgentBasicGenTool)(val); if (!(0, json_5.sdIsMap)(base)) { throw new errors_1.BoxSdkError({ message: 'Expecting a map for "AiStudioAgentBasicGenToolResponse"', }); } return { ...base, ...{ ['warnings']: val.warnings == void 0 ? val.warnings : val.warnings.map(function (item) { return item; }), }, }; } function deserializeAiStudioAgentBasicGenToolResponse(val) { if (!(0, json_5.sdIsMap)(val)) { throw new errors_1.BoxSdkError({ message: 'Expecting a map for "AiStudioAgentBasicGenToolResponse"', }); } if (!(val.warnings == void 0) && !(0, json_4.sdIsList)(val.warnings)) { throw new errors_1.BoxSdkError({ message: 'Expecting array for "warnings" of type "AiStudioAgentBasicGenToolResponse"', }); } const warnings = val.warnings == void 0 ? void 0 : (0, json_4.sdIsList)(val.warnings) ? val.warnings.map(function (itm) { if (!(0, json_3.sdIsString)(itm)) { throw new errors_1.BoxSdkError({ message: 'Expecting string for "AiStudioAgentBasicGenToolResponse"', }); } return itm; }) : []; if (!(val.is_custom_instructions_included == void 0) && !(0, json_1.sdIsBoolean)(val.is_custom_instructions_included)) { throw new errors_1.BoxSdkError({ message: 'Expecting boolean for "is_custom_instructions_included" of type "AiStudioAgentBasicGenToolResponse"', }); } const isCustomInstructionsIncluded = val.is_custom_instructions_included == void 0 ? void 0 : val.is_custom_instructions_included; if (!(val.content_template == void 0) && !(0, json_3.sdIsString)(val.content_template)) { throw new errors_1.BoxSdkError({ message: 'Expecting string for "content_template" of type "AiStudioAgentBasicGenToolResponse"', }); } const contentTemplate = val.content_template == void 0 ? void 0 : val.content_template; const embeddings = val.embeddings == void 0 ? void 0 : (0, aiAgentLongTextToolTextGen_1.deserializeAiAgentLongTextToolTextGenEmbeddingsField)(val.embeddings); if (!(val.system_message == void 0) && !(0, json_3.sdIsString)(val.system_message)) { throw new errors_1.BoxSdkError({ message: 'Expecting string for "system_message" of type "AiStudioAgentBasicGenToolResponse"', }); } const systemMessage = val.system_message == void 0 ? void 0 : val.system_message; if (!(val.prompt_template == void 0) && !(0, json_3.sdIsString)(val.prompt_template)) { throw new errors_1.BoxSdkError({ message: 'Expecting string for "prompt_template" of type "AiStudioAgentBasicGenToolResponse"', }); } const promptTemplate = val.prompt_template == void 0 ? void 0 : val.prompt_template; if (!(val.model == void 0) && !(0, json_3.sdIsString)(val.model)) { throw new errors_1.BoxSdkError({ message: 'Expecting string for "model" of type "AiStudioAgentBasicGenToolResponse"', }); } const model = val.model == void 0 ? void 0 : val.model; if (!(val.num_tokens_for_completion == void 0) && !(0, json_2.sdIsNumber)(val.num_tokens_for_completion)) { throw new errors_1.BoxSdkError({ message: 'Expecting number for "num_tokens_for_completion" of type "AiStudioAgentBasicGenToolResponse"', }); } const numTokensForCompletion = val.num_tokens_for_completion == void 0 ? void 0 : val.num_tokens_for_completion; const llmEndpointParams = val.llm_endpoint_params == void 0 ? void 0 : (0, aiLlmEndpointParams_1.deserializeAiLlmEndpointParams)(val.llm_endpoint_params); return { warnings: warnings, isCustomInstructionsIncluded: isCustomInstructionsIncluded, contentTemplate: contentTemplate, embeddings: embeddings, systemMessage: systemMessage, promptTemplate: promptTemplate, model: model, numTokensForCompletion: numTokensForCompletion, llmEndpointParams: llmEndpointParams, }; } //# sourceMappingURL=aiStudioAgentBasicGenToolResponse.js.map