13 lines
345 B
C#
13 lines
345 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);
|
|
}
|
|
}
|