2025-10-22 11:45:15 +02:00
|
|
|
|
using BS.Shared.DataContracts.Feature.AI;
|
2025-08-05 11:55:48 +02:00
|
|
|
|
using BS.Shared.DataContracts;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using System.Text.Json;
|
|
|
|
|
|
|
|
|
|
|
|
namespace AICore.Facade.LLM
|
|
|
|
|
|
{
|
|
|
|
|
|
public abstract class BaseLLMApiClient
|
|
|
|
|
|
{
|
2025-08-05 15:57:30 +02:00
|
|
|
|
public abstract ApiResponse<IEnumerable<AiModelDC>> GetAiModelle();
|
2025-08-05 11:55:48 +02:00
|
|
|
|
public abstract ApiResponse<string> SendAiMessageRequest(dynamic payload, out string message, out string model, out int? duration);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|