mirror of
https://github.com/ikechan8370/chatgpt-plugin.git
synced 2025-12-15 12:57:10 +00:00
15 lines
298 B
JavaScript
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()
|