Files
finder2e_foundry_converter/services/illmservice.cs
T

15 lines
532 B
C#

using System;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace finder2e_foundry_converter.Services
{
public interface ILlmService
{
Task<List<string>> GetModelsAsync(string baseUrl);
Task<string> GenerateResponseAsync(string baseUrl, string model, string text, List<string> imagePaths);
// Ask a single prompt and return assistant's textual response (no streaming)
Task<string> AskAsync(string baseUrl, string model, string prompt, List<string> imagePaths);
}
}