You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
839 B
TypeScript

import { Md5 } from 'ts-md5';
import { PLUGIN_SCHEMA_API_MD5_PREFIX, PLUGIN_SCHEMA_SEPARATOR } from '@/const/plugin';
export const genToolCallingName = (identifier: string, name: string, type: string = 'default') => {
const pluginType = type && type !== 'default' ? `${PLUGIN_SCHEMA_SEPARATOR + type}` : '';
// 将插件的 identifier 作为前缀,避免重复
let apiName = identifier + PLUGIN_SCHEMA_SEPARATOR + name + pluginType;
// OpenAI GPT function_call name can't be longer than 64 characters
// So we need to use md5 to shorten the name
// and then find the correct apiName in response by md5
if (apiName.length >= 64) {
const md5Content = PLUGIN_SCHEMA_API_MD5_PREFIX + Md5.hashStr(name).toString();
apiName = identifier + PLUGIN_SCHEMA_SEPARATOR + md5Content + pluginType;
}
return apiName;
};