mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-07-14 01:41:24 -06:00
126 lines
3.4 KiB
TypeScript
126 lines
3.4 KiB
TypeScript
import { JSONSchema7 } from 'json-schema';
|
|
import { v4 } from 'uuid';
|
|
|
|
const isNotEmpty = (...propertyNames: string[]): JSONSchema7 => {
|
|
const properties = {};
|
|
propertyNames.forEach(
|
|
(property) =>
|
|
(properties[property] = {
|
|
minLength: 1,
|
|
description: `The "${property}" cannot be empty`,
|
|
}),
|
|
);
|
|
return {
|
|
if: {
|
|
propertyNames: {
|
|
enum: [...propertyNames],
|
|
},
|
|
},
|
|
then: { properties },
|
|
};
|
|
};
|
|
|
|
export const openaiSchema: JSONSchema7 = {
|
|
$id: v4(),
|
|
type: 'object',
|
|
properties: {
|
|
enabled: { type: 'boolean' },
|
|
openaiCredsId: { type: 'string' },
|
|
botType: { type: 'string', enum: ['assistant', 'chatCompletion'] },
|
|
assistantId: { type: 'string' },
|
|
model: { type: 'string' },
|
|
systemMessages: { type: 'array', items: { type: 'string' } },
|
|
assistantMessages: { type: 'array', items: { type: 'string' } },
|
|
userMessages: { type: 'array', items: { type: 'string' } },
|
|
maxTokens: { type: 'integer' },
|
|
triggerType: { type: 'string', enum: ['all', 'keyword'] },
|
|
triggerOperator: { type: 'string', enum: ['equals', 'contains', 'startsWith', 'endsWith', 'regex', 'none'] },
|
|
triggerValue: { type: 'string' },
|
|
expire: { type: 'integer' },
|
|
keywordFinish: { type: 'string' },
|
|
delayMessage: { type: 'integer' },
|
|
unknownMessage: { type: 'string' },
|
|
listeningFromMe: { type: 'boolean' },
|
|
stopBotFromMe: { type: 'boolean' },
|
|
keepOpen: { type: 'boolean' },
|
|
debounceTime: { type: 'integer' },
|
|
ignoreJids: { type: 'array', items: { type: 'string' } },
|
|
},
|
|
required: ['enabled', 'openaiCredsId', 'botType', 'triggerType'],
|
|
...isNotEmpty('enabled', 'openaiCredsId', 'botType', 'triggerType'),
|
|
};
|
|
|
|
export const openaiCredsSchema: JSONSchema7 = {
|
|
$id: v4(),
|
|
type: 'object',
|
|
properties: {
|
|
apiKey: { type: 'string' },
|
|
},
|
|
required: ['apiKey'],
|
|
...isNotEmpty('apiKey'),
|
|
};
|
|
|
|
export const openaiStatusSchema: JSONSchema7 = {
|
|
$id: v4(),
|
|
type: 'object',
|
|
properties: {
|
|
remoteJid: { type: 'string' },
|
|
status: { type: 'string', enum: ['opened', 'closed', 'paused'] },
|
|
},
|
|
required: ['remoteJid', 'status'],
|
|
...isNotEmpty('remoteJid', 'status'),
|
|
};
|
|
|
|
export const openaiSettingSchema: JSONSchema7 = {
|
|
$id: v4(),
|
|
type: 'object',
|
|
properties: {
|
|
openaiCredsId: { type: 'string' },
|
|
expire: { type: 'integer' },
|
|
keywordFinish: { type: 'string' },
|
|
delayMessage: { type: 'integer' },
|
|
unknownMessage: { type: 'string' },
|
|
listeningFromMe: { type: 'boolean' },
|
|
stopBotFromMe: { type: 'boolean' },
|
|
keepOpen: { type: 'boolean' },
|
|
debounceTime: { type: 'integer' },
|
|
ignoreJids: { type: 'array', items: { type: 'string' } },
|
|
openaiIdFallback: { type: 'string' },
|
|
},
|
|
required: [
|
|
'openaiCredsId',
|
|
'expire',
|
|
'keywordFinish',
|
|
'delayMessage',
|
|
'unknownMessage',
|
|
'listeningFromMe',
|
|
'stopBotFromMe',
|
|
'keepOpen',
|
|
'debounceTime',
|
|
'ignoreJids',
|
|
],
|
|
...isNotEmpty(
|
|
'openaiCredsId',
|
|
'expire',
|
|
'keywordFinish',
|
|
'delayMessage',
|
|
'unknownMessage',
|
|
'listeningFromMe',
|
|
'stopBotFromMe',
|
|
'keepOpen',
|
|
'debounceTime',
|
|
'ignoreJids',
|
|
),
|
|
};
|
|
|
|
export const openaiIgnoreJidSchema: JSONSchema7 = {
|
|
$id: v4(),
|
|
type: 'object',
|
|
properties: {
|
|
remoteJid: { type: 'string' },
|
|
action: { type: 'string', enum: ['add', 'remove'] },
|
|
},
|
|
required: ['remoteJid', 'action'],
|
|
...isNotEmpty('remoteJid', 'action'),
|
|
};
|