namespace AIAssistantModule.Core.Interfaces.SPI { public interface ILLMService { Task CallAsync( string prompt, string? schema = null, CancellationToken cancellationToken = default); } }