Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/raphaelvserafim/chatbot-gpt-whatsapp

É uma solução em PHP que permite criar um chatbot automatizado combinando a integração com o modelo de linguagem ChatGPT da OpenAI e a API do WhatsApp.
https://github.com/raphaelvserafim/chatbot-gpt-whatsapp

chatbot gpt gpt-3 php whatsapp whatsapp-api whatsapp-bot

Last synced: about 2 months ago
JSON representation

É uma solução em PHP que permite criar um chatbot automatizado combinando a integração com o modelo de linguagem ChatGPT da OpenAI e a API do WhatsApp.

Awesome Lists containing this project

README

        

# Criando um chatbot automatizado: Classe PHP combina integração com ChatGPT e API do WhatsApp

## CONTATO














## Example of use:

Key OpenAI

API Key WhatsApp

## Installing composer
```
composer require cachesistemas/chatbot-gpt-whatsapp
```
### Connecting with Whatsapp
```php
use Cachesistemas\ClassePhpApiWame\WhatsApp;

include_once 'vendor/autoload.php';

$whatsapp = new WhatsApp(["server" => "API server", "key" => "Your Key Instance"]);

echo $whatsapp->getQrCodeHTML();

```

### Updating webhook
```php
$body = ["allowWebhook" => true,
"webhookMessage" => "your-url.com/webhook.php",
"webhookGroup" => "",
"webhookConnection" => "",
"webhookQrCode" => ""];
$whatsapp->updateWebhook($body);
```

### your-url.com/webhook.php
```php
use Cachesistemas\ChatbotGptWhatsapp\Bot;
include 'vendor/autoload.php';
new Bot(["wpp_server" => "", "wpp_key" => "", "open_key" => " "]);

```