mirror of
https://github.com/syuilo/ai.git
synced 2025-03-25 21:12:56 +00:00
32 lines
764 B
TypeScript
32 lines
764 B
TypeScript
type Config = {
|
|
host: string;
|
|
serverName?: string;
|
|
i: string;
|
|
master?: string;
|
|
wsUrl: string;
|
|
apiUrl: string;
|
|
keywordEnabled: boolean;
|
|
reversiEnabled: boolean;
|
|
notingEnabled: boolean;
|
|
colorNotesEnabled: boolean;
|
|
chartEnabled: boolean;
|
|
serverMonitoring: boolean;
|
|
checkEmojisEnabled?: boolean;
|
|
checkEmojisAtOnce?: boolean;
|
|
geminiProApiKey?: string;
|
|
pLaMoApiKey?: string;
|
|
prompt?: string;
|
|
aichatRandomTalkEnabled?: string;
|
|
aichatRandomTalkProbability?: string;
|
|
aichatRandomTalkIntervalMinutes?: string;
|
|
mecab?: string;
|
|
mecabDic?: string;
|
|
memoryDir?: string;
|
|
};
|
|
|
|
import config from '../config.json' with { type: 'json' };
|
|
|
|
config.wsUrl = config.host.replace('http', 'ws');
|
|
config.apiUrl = config.host + '/api';
|
|
|
|
export default config as Config;
|