This repository has been archived on 2023-11-16. You can view files and clone it, but cannot push or open issues or pull requests.
GOA/LLMApi/Services/ILLMApiService.cs

11 lines
296 B
C#
Raw Permalink Normal View History

using LLMApi.Data.Contracts.ChatGpt3_5;
using LLMApi.Data.Contracts.Game.ChatGpt3_5;
2023-09-23 11:21:46 +02:00
namespace LLMApi.Services;
public interface ILlmApiService
{
// public Task<IEnumerable<Choice>> GetAnswerToPrompt(string prompt);
public Task<AnswerResponse> GetAnswer(AnswerRequest answerRequest);
2023-09-23 11:21:46 +02:00
}