using System.Threading.Tasks; namespace Mindforge.API.Providers { public interface ILlmApiProvider { Task SendRequestAsync(string systemPrompt, string userPrompt); } }