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