using DramaLing.Api.Models.DTOs; namespace DramaLing.Api.Services.AI; public interface IReplicateImageGenerationService { Task GenerateImageAsync(string prompt, string model, GenerationOptionsDto options); Task GetPredictionStatusAsync(string predictionId); }