chatgpt-plugin/config/config.js
2025-03-10 23:08:23 +08:00

15 lines
298 B
JavaScript

class ChatGPTConfig {
dataDir = 'data'
processorsDirPath = 'utils/processors'
toolsDirPath = 'utils/tools'
cloudBaseUrl = ''
cloudApiKey = ''
embeddingModel = 'gemini-embedding-exp-03-07'
dimensions = 0
serverAuthKey = ''
version = '3.0.0'
}
export default new ChatGPTConfig()