A Delphi class to consume the OpenAI ChatGPT API easily.
This library is a Delphi class that allows you to easily consume the OpenAI ChatGPT API. With just a few lines of code, you can send a message to the language model and receive an automatically generated response. The class manages all the HTTP communication and JSON serialization/deserialization, making the integration with the ChatGPT API extremely easy. Additionally, the class is fully customizable and can be easily integrated into existing Delphi applications.
To use the class, simply add it to your Delphi project and call the appropriate methods to send messages and receive responses from the ChatGPT API.
Here is a simple example of how to use the ChatGPT4Delphi class:
uses ChatGPT4Delphi;
var
ChatBot: TChatGPT4Delphi;
Response: string;
begin
ChatBot := TChatGPT4Delphi.Create('YOUR_ACCESS_KEY_HERE');
try
Response := ChatBot.Query('What is the capital of France?');
WriteLn(Response);
finally
ChatBot.Free;
end;
end;
- Delphi 10.3 or later
If you want to contribute to the development of this library, please feel free to fork the repository and make a pull request.
Get in touch with us for any questions or inquiries through WhatsApp: https://wa.me/5597991442486
Donate via PIX:
Email: delmar.apui@gmail.com
Get to know us better on our YouTube channel:
>> FIND OUT MORE
This library is licensed under the GPL-3.0 license. See LICENSE for more details.
Uma classe Delphi para consumir facilmente a API do ChatGPT da OpenAI.
Esta biblioteca é uma classe Delphi que permite consumir facilmente a API do ChatGPT da OpenAI. Com apenas algumas linhas de código, você pode enviar uma mensagem para o modelo de linguagem e receber uma resposta gerada automaticamente. A classe gerencia toda a comunicação HTTP e serialização/deserialização de JSON, tornando a integração com a API do ChatGPT extremamente fácil. Além disso, a classe é totalmente personalizável e pode ser facilmente integrada a aplicações Delphi existentes.
Para usar a classe, basta adicioná-la ao seu projeto Delphi e chamar os métodos apropriados para enviar mensagens e receber respostas da API do ChatGPT.
Aqui está um exemplo simples de como usar a classe ChatGPT4Delphi:
uses ChatGPT4Delphi;
var
ChatBot: TChatGPT4Delphi;
Response: string;
begin
ChatBot := TChatGPT4Delphi.Create('SUA_CHAVE_ACESSO_AQUI');
try
Response := ChatBot.Query('Qual é a capital da França?');
WriteLn(Response);
finally
ChatBot.Free;
end;
end;
- Delphi 10.3 ou posterior
Se você quiser contribuir para o desenvolvimento desta biblioteca, sinta-se à vontade para fazer um fork do repositório e fazer uma pull request.
Entre em contato conosco para qualquer dúvida ou pergunta pelo WhatsApp: https://wa.me/5597991442486
Faça sua doação via PIX:
Email: delmar.apui@gmail.com
Conheça mais sobre nós em nosso canal no YouTube:
>> CONHEÇA MAIS
Esta biblioteca é licenciada sob a licença GPL-3.0. Veja LICENSE para mais detalhes.