mirror of
https://github.com/wassname/chatGPTBox.git
synced 2026-08-06 13:00:44 +08:00
feat: offline/self-hosted large language model support (#11)
This commit is contained in:
@@ -5,7 +5,6 @@
|
||||
* @property {string|null} messageId - chatGPT web mode
|
||||
* @property {string|null} parentMessageId - chatGPT web mode
|
||||
* @property {Object[]|null} conversationRecords
|
||||
* @property {bool|null} useApiKey
|
||||
*/
|
||||
/**
|
||||
* @param {Session} session
|
||||
@@ -17,7 +16,6 @@ export function initSession({
|
||||
messageId = null,
|
||||
parentMessageId = null,
|
||||
conversationRecords = [],
|
||||
useApiKey = null,
|
||||
} = {}) {
|
||||
return {
|
||||
question,
|
||||
@@ -25,6 +23,5 @@ export function initSession({
|
||||
messageId,
|
||||
parentMessageId,
|
||||
conversationRecords,
|
||||
useApiKey,
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user