using System.Threading.Tasks; using Mindforge.API.Models.Enums; namespace Mindforge.API.Services.Interfaces { public interface IAgentService { Task ProcessRequestAsync(LlmProvider provider, string systemPrompt, string userPrompt, string model); Task ProcessRequestBatchAsync(LlmProvider provider, string systemPrompt, string userPrompt, string model); } }