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:
Dustin Healy 2025-09-13 12:49:44 -07:00
parent 4d9e17efe1
commit cb8e76e27e
3 changed files with 12 additions and 0 deletions

View file

@ -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(),