box-node-sdk
Version:
Official SDK for Box Platform APIs
76 lines • 3.6 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.serializeAiAgentBasicGenTool = serializeAiAgentBasicGenTool;
exports.deserializeAiAgentBasicGenTool = deserializeAiAgentBasicGenTool;
const aiLlmEndpointParams_1 = require("./aiLlmEndpointParams");
const aiAgentLongTextToolTextGen_1 = require("./aiAgentLongTextToolTextGen");
const aiAgentLongTextToolTextGen_2 = require("./aiAgentLongTextToolTextGen");
const errors_1 = require("../box/errors");
const json_1 = require("../serialization/json");
const json_2 = require("../serialization/json");
const json_3 = require("../serialization/json");
function serializeAiAgentBasicGenTool(val) {
const base = (0, aiAgentLongTextToolTextGen_2.serializeAiAgentLongTextToolTextGen)(val);
if (!(0, json_3.sdIsMap)(base)) {
throw new errors_1.BoxSdkError({
message: 'Expecting a map for "AiAgentBasicGenTool"',
});
}
return { ...base, ...{ ['content_template']: val.contentTemplate } };
}
function deserializeAiAgentBasicGenTool(val) {
if (!(0, json_3.sdIsMap)(val)) {
throw new errors_1.BoxSdkError({
message: 'Expecting a map for "AiAgentBasicGenTool"',
});
}
if (!(val.content_template == void 0) && !(0, json_2.sdIsString)(val.content_template)) {
throw new errors_1.BoxSdkError({
message: 'Expecting string for "content_template" of type "AiAgentBasicGenTool"',
});
}
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_2.sdIsString)(val.system_message)) {
throw new errors_1.BoxSdkError({
message: 'Expecting string for "system_message" of type "AiAgentBasicGenTool"',
});
}
const systemMessage = val.system_message == void 0 ? void 0 : val.system_message;
if (!(val.prompt_template == void 0) && !(0, json_2.sdIsString)(val.prompt_template)) {
throw new errors_1.BoxSdkError({
message: 'Expecting string for "prompt_template" of type "AiAgentBasicGenTool"',
});
}
const promptTemplate = val.prompt_template == void 0 ? void 0 : val.prompt_template;
if (!(val.model == void 0) && !(0, json_2.sdIsString)(val.model)) {
throw new errors_1.BoxSdkError({
message: 'Expecting string for "model" of type "AiAgentBasicGenTool"',
});
}
const model = val.model == void 0 ? void 0 : val.model;
if (!(val.num_tokens_for_completion == void 0) &&
!(0, json_1.sdIsNumber)(val.num_tokens_for_completion)) {
throw new errors_1.BoxSdkError({
message: 'Expecting number for "num_tokens_for_completion" of type "AiAgentBasicGenTool"',
});
}
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 {
contentTemplate: contentTemplate,
embeddings: embeddings,
systemMessage: systemMessage,
promptTemplate: promptTemplate,
model: model,
numTokensForCompletion: numTokensForCompletion,
llmEndpointParams: llmEndpointParams,
};
}
//# sourceMappingURL=aiAgentBasicGenTool.js.map