2026-06-08 15:53:40 -05:00
|
|
|
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);
|
2026-07-01 15:33:12 -05:00
|
|
|
// Ask a single prompt and return assistant's textual response (no streaming)
|
|
|
|
|
Task<string> AskAsync(string baseUrl, string model, string prompt, List<string> imagePaths);
|
2026-06-08 15:53:40 -05:00
|
|
|
}
|
|
|
|
|
}
|