I had get 429 issue.
Anyone can help me?
private bool createChatGptObj()
{
bool success = false;
try
{
_gptObj = new ChatGpt(_apiKey);
_gptObj.SetConversations(new List<Net.DTO.ChatGPT.ChatGptConversation>()
{
new Net.DTO.ChatGPT.ChatGptConversation(),
});
success = true;
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
return success;
}
private async void askAndReponse(string question)
{
await _gptObj.AskStream(response =>
{
this.Invoke(new Action(() =>
{
rtbMessage.AppendText(response);
}));
}, question);
}
I had get 429 issue.
Anyone can help me?
private bool createChatGptObj()
{
bool success = false;