mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-02-06 17:51:50 +01:00
feat: add modelHistory to conversations
modelHistory keeps track of all the models and their respective endpoints that are used in a conversation, so we can quickly fetch the right values to populate our cost table whenever we load a conversation rather than having to recompute the list every time
This commit is contained in:
parent
4d9e17efe1
commit
cb8e76e27e
3 changed files with 12 additions and 0 deletions
|
|
@ -631,6 +631,7 @@ export const tConversationSchema = z.object({
|
|||
modelLabel: z.string().nullable().optional(),
|
||||
userLabel: z.string().optional(),
|
||||
model: z.string().nullable().optional(),
|
||||
modelHistory: z.array(z.object({ model: z.string(), endpoint: z.string() })).optional(),
|
||||
promptPrefix: z.string().nullable().optional(),
|
||||
temperature: z.number().nullable().optional(),
|
||||
topP: z.number().optional(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue