using OpenChatApi.Models; namespace OpenChatApi.Services { public interface IMongoDBService { Task GetUserMessages(string userId); Task UpdateMessages(string userId, string userMessage, string assistantResponse); Task UpdateSystemPrompt(string userId, string systemPrompt); } }