Files
finder2e_foundry_converter/services/illmservice.cs
T

13 lines
345 B
C#
Raw Normal View History

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);
}
}