box-node-sdk
Version:
Official SDK for Box Platform APIs
134 lines • 6.1 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.serializeAiAgentLongTextToolTextGenEmbeddingsStrategyField = serializeAiAgentLongTextToolTextGenEmbeddingsStrategyField;
exports.deserializeAiAgentLongTextToolTextGenEmbeddingsStrategyField = deserializeAiAgentLongTextToolTextGenEmbeddingsStrategyField;
exports.serializeAiAgentLongTextToolTextGenEmbeddingsField = serializeAiAgentLongTextToolTextGenEmbeddingsField;
exports.deserializeAiAgentLongTextToolTextGenEmbeddingsField = deserializeAiAgentLongTextToolTextGenEmbeddingsField;
exports.serializeAiAgentLongTextToolTextGen = serializeAiAgentLongTextToolTextGen;
exports.deserializeAiAgentLongTextToolTextGen = deserializeAiAgentLongTextToolTextGen;
const aiLlmEndpointParams_1 = require("./aiLlmEndpointParams");
const aiAgentBasicTextToolTextGen_1 = require("./aiAgentBasicTextToolTextGen");
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 serializeAiAgentLongTextToolTextGenEmbeddingsStrategyField(val) {
return { ['id']: val.id, ['num_tokens_per_chunk']: val.numTokensPerChunk };
}
function deserializeAiAgentLongTextToolTextGenEmbeddingsStrategyField(val) {
if (!(0, json_3.sdIsMap)(val)) {
throw new errors_1.BoxSdkError({
message: 'Expecting a map for "AiAgentLongTextToolTextGenEmbeddingsStrategyField"',
});
}
if (!(val.id == void 0) && !(0, json_2.sdIsString)(val.id)) {
throw new errors_1.BoxSdkError({
message: 'Expecting string for "id" of type "AiAgentLongTextToolTextGenEmbeddingsStrategyField"',
});
}
const id = val.id == void 0 ? void 0 : val.id;
if (!(val.num_tokens_per_chunk == void 0) &&
!(0, json_1.sdIsNumber)(val.num_tokens_per_chunk)) {
throw new errors_1.BoxSdkError({
message: 'Expecting number for "num_tokens_per_chunk" of type "AiAgentLongTextToolTextGenEmbeddingsStrategyField"',
});
}
const numTokensPerChunk = val.num_tokens_per_chunk == void 0 ? void 0 : val.num_tokens_per_chunk;
return {
id: id,
numTokensPerChunk: numTokensPerChunk,
};
}
function serializeAiAgentLongTextToolTextGenEmbeddingsField(val) {
return {
['model']: val.model,
['strategy']: val.strategy == void 0
? val.strategy
: serializeAiAgentLongTextToolTextGenEmbeddingsStrategyField(val.strategy),
};
}
function deserializeAiAgentLongTextToolTextGenEmbeddingsField(val) {
if (!(0, json_3.sdIsMap)(val)) {
throw new errors_1.BoxSdkError({
message: 'Expecting a map for "AiAgentLongTextToolTextGenEmbeddingsField"',
});
}
if (!(val.model == void 0) && !(0, json_2.sdIsString)(val.model)) {
throw new errors_1.BoxSdkError({
message: 'Expecting string for "model" of type "AiAgentLongTextToolTextGenEmbeddingsField"',
});
}
const model = val.model == void 0 ? void 0 : val.model;
const strategy = val.strategy == void 0
? void 0
: deserializeAiAgentLongTextToolTextGenEmbeddingsStrategyField(val.strategy);
return {
model: model,
strategy: strategy,
};
}
function serializeAiAgentLongTextToolTextGen(val) {
const base = (0, aiAgentBasicTextToolTextGen_1.serializeAiAgentBasicTextToolTextGen)(val);
if (!(0, json_3.sdIsMap)(base)) {
throw new errors_1.BoxSdkError({
message: 'Expecting a map for "AiAgentLongTextToolTextGen"',
});
}
return {
...base,
...{
['embeddings']: val.embeddings == void 0
? val.embeddings
: serializeAiAgentLongTextToolTextGenEmbeddingsField(val.embeddings),
},
};
}
function deserializeAiAgentLongTextToolTextGen(val) {
if (!(0, json_3.sdIsMap)(val)) {
throw new errors_1.BoxSdkError({
message: 'Expecting a map for "AiAgentLongTextToolTextGen"',
});
}
const embeddings = val.embeddings == void 0
? void 0
: 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 "AiAgentLongTextToolTextGen"',
});
}
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 "AiAgentLongTextToolTextGen"',
});
}
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 "AiAgentLongTextToolTextGen"',
});
}
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 "AiAgentLongTextToolTextGen"',
});
}
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 {
embeddings: embeddings,
systemMessage: systemMessage,
promptTemplate: promptTemplate,
model: model,
numTokensForCompletion: numTokensForCompletion,
llmEndpointParams: llmEndpointParams,
};
}
//# sourceMappingURL=aiAgentLongTextToolTextGen.js.map