helloya20's picture
Upload 2345 files
f0743f4 verified
import toolCallSchema, { IToolCallData } from '~/schema/toolCall';
/**
* Creates or returns the ToolCall model using the provided mongoose instance and schema
*/
export function createToolCallModel(mongoose: typeof import('mongoose')) {
return mongoose.models.ToolCall || mongoose.model<IToolCallData>('ToolCall', toolCallSchema);
}