Skip to content

Instantly share code, notes, and snippets.

View jviaches's full-sized avatar
🥋
Coding :)

Viacheslav Blinder jviaches

🥋
Coding :)
View GitHub Profile
@davepcallan
davepcallan / ChatGPTAPIExample.cs
Created March 7, 2024 13:02
Simple example of integrating with ChatGPT API from .NET
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
using System.Text;
using System.Text.Json;
namespace Samples;
public class ChatGPTAPIExample(ILogger<ChatGPTAPIExample> logger, IConfiguration configuration)
{
private string Prompt = "Please explain the following code :";