123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- export default {
-
-
-
- cacheOptions: {},
-
-
- storageFilePath: process.env.STORAGE_FILE_PATH || './cache.json',
- chatGptClient: {
-
- openaiApiKey: process.env.OPENAI_API_KEY || '',
-
-
-
-
- modelOptions: {
-
-
- model: 'gpt-3.5-turbo',
-
-
- },
-
-
-
-
-
-
-
-
-
-
-
-
- proxy: '',
-
- debug: false,
- },
-
- bingAiClient: {
-
- host: '',
-
- userToken: '',
-
- cookies: '',
-
- proxy: '',
-
-
-
-
-
-
-
-
- debug: false,
- },
- chatGptBrowserClient: {
-
-
- reverseProxyUrl: 'https://bypass.churchless.tech/api/conversation',
-
- accessToken: '',
-
- cookies: '',
-
- proxy: '',
-
- debug: false,
- },
-
- apiOptions: {
- port: process.env.API_PORT || 3000,
- host: process.env.API_HOST || '0.0.0.0',
- encryptKey: process.env.ENCRYPT_KEY || '123',
- openEncrypt: false,
-
- debug: false,
-
- clientToUse: 'chatgpt',
-
-
- generateTitles: false,
-
-
- perMessageClientOptionsWhitelist: {
-
-
- validClientsToUse: ['bing', 'chatgpt', 'chatgpt-browser'],
-
-
-
-
-
- chatgpt: [
- 'promptPrefix',
- 'userLabel',
- 'chatGptLabel',
-
-
-
- 'modelOptions.temperature',
- ],
- },
- },
-
- cliOptions: {
-
-
- },
- };
|