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

@ -155,4 +155,14 @@ export const conversationPreset = {
verbosity: {
type: String,
},
/** Track all unique models used in this conversation with their endpoints */
modelHistory: {
type: [
{
model: { type: String, required: true },
endpoint: { type: String, required: true },
},
],
default: [],
},
};

View file

@ -11,6 +11,7 @@ export interface IConversation extends Document {
endpoint?: string;
endpointType?: string;
model?: string;
modelHistory?: Array<{ model: string; endpoint: string }>;
region?: string;
chatGptLabel?: string;
examples?: unknown[];