mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-19 01:40:15 +01:00
feat: endpoint setting mobile style.
feat: save and endpoint option works!
This commit is contained in:
parent
edaf7c3ad1
commit
46e3ef4049
8 changed files with 91 additions and 38 deletions
|
|
@ -6,9 +6,10 @@ const buildDefaultConversation = ({ conversation, endpoint, lastConversationSetu
|
|||
model: lastConversationSetup?.model || 'gpt-3.5-turbo',
|
||||
chatGptLabel: lastConversationSetup?.chatGptLabel || null,
|
||||
promptPrefix: lastConversationSetup?.promptPrefix || null,
|
||||
temperature: lastConversationSetup?.temperature || 0.8,
|
||||
temperature: lastConversationSetup?.temperature || 1,
|
||||
top_p: lastConversationSetup?.top_p || 1,
|
||||
presence_penalty: lastConversationSetup?.presence_penalty || 1
|
||||
presence_penalty: lastConversationSetup?.presence_penalty || 0,
|
||||
frequency_penalty: lastConversationSetup?.frequency_penalty || 0
|
||||
};
|
||||
} else if (endpoint === 'bingAI') {
|
||||
conversation = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue