using LLMApi.Data.Contracts.ChatGpt3_5;
using LLMApi.Data.Contracts.Game.ChatGpt3_5;
namespace LLMApi.Services;
public interface ILlmApiService
{
// public Task<IEnumerable<Choice>> GetAnswerToPrompt(string prompt);
public Task<AnswerResponse> GetAnswer(AnswerRequest answerRequest);
}