Adding more files for communication with ChatGPT

This commit is contained in:
Raphael Moreira 2023-10-23 16:16:57 -03:00 committed by GitHub
parent 9425bd193f
commit 5737cb2e44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 94 additions and 0 deletions

63
CSharp/OpenAi/ChatGpt.cs Normal file
View File

@ -0,0 +1,63 @@
using System.Net.Http.Headers;
using System.Text;
using System.Text.Json;
namespace Temp.OpenAi;
public sealed class ChatGpt
{
private readonly HttpClient _httpClient;
private const string OpenAiSecret = "your secret api";
private const string ApplicationJsonMediaTypeRequest = "application/json";
private const string AcceptHeaderRequest = "Accept";
private const string OpenAiApiBaseUrl = "https://api.openai.com/v1/";
private readonly JsonSerializerOptions _serializerOptions = new()
{
PropertyNameCaseInsensitive = true
};
public ChatGpt()
{
_httpClient = new HttpClient();
_httpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", OpenAiSecret);
_httpClient.BaseAddress = new Uri(OpenAiApiBaseUrl);
_httpClient.DefaultRequestHeaders.Add(AcceptHeaderRequest, ApplicationJsonMediaTypeRequest);
}
public async Task<IEnumerable<string>?> GetReasonsToMyBitch()
{
const string prompt = "Return only a CSV list separated by semicolons, of phrases with various reasons that justify " +
"my delay in leaving work, to my wife. Do not repeat this question in your response. " +
"Only the raw CSV. No double quotes. Just raw CSV";
return await DoRequest(prompt);
}
public async Task<IEnumerable<string>?> GetExcusesToMyMates()
{
const string prompt = "Return only a CSV list separated by semicolons, of phrases with various reasons that " +
"justify why I can't go out for a drink with my friends. Do not repeat this question in " +
"your response. Only the raw CSV. No double quotes. Just raw CSV";
return await DoRequest(prompt);
}
private async Task<IEnumerable<string>?> DoRequest(string prompt)
{
var promptJson = new CompletionChatRequest
{
Messages = new List<CompletionChatMessage>
{
new() { Content = prompt }
}
};
var content = new StringContent(JsonSerializer.Serialize(promptJson), Encoding.UTF8, ApplicationJsonMediaTypeRequest);
var responseMessage =
await _httpClient.PostAsync("chat/completions", content).ConfigureAwait(false);
var responseContent = await responseMessage.Content.ReadAsStringAsync().ConfigureAwait(false);
var response = JsonSerializer.Deserialize<CompletionChatResponse>(responseContent, _serializerOptions);
return response?.Content?.Split(";");
}
}

View File

@ -0,0 +1,6 @@
namespace Temp.OpenAi;
public record struct CompletionChatChoice
{
public CompletionChatMessage Message { get; set; }
}

View File

@ -0,0 +1,7 @@
namespace Temp.OpenAi;
public record CompletionChatResponse
{
public CompletionChatChoice[] Choices { get; set; }
public string? Content => Choices.FirstOrDefault().Message.Content;
}

View File

@ -0,0 +1,18 @@
using System.Runtime.Serialization;
namespace Temp.OpenAi;
public class CompletionChatRequest
{
[DataMember(Name="model")]
public readonly string Model = "gpt-3.5-turbo";
[DataMember(Name="temperature")]
public readonly float Temperature = 1f;
[DataMember(Name="max_tokens")]
public readonly int MaxTokens = 256;
[DataMember(Name="messages")]
public IEnumerable<CompletionChatMessage>? Messages { get; set; }
}