Move character endpoints into their own module

This commit is contained in:
valadaptive
2023-12-04 07:56:42 -05:00
parent 17959a60a4
commit a457484c2d
5 changed files with 1012 additions and 979 deletions

View File

@ -153,6 +153,9 @@ const TEXTGEN_TYPES = {
KOBOLDCPP: 'koboldcpp',
};
const AVATAR_WIDTH = 400;
const AVATAR_HEIGHT = 600;
module.exports = {
DIRECTORIES,
UNSAFE_EXTENSIONS,
@ -160,4 +163,6 @@ module.exports = {
PALM_SAFETY,
TEXTGEN_TYPES,
CHAT_COMPLETION_SOURCES,
AVATAR_WIDTH,
AVATAR_HEIGHT,
};