--
Installation and quick start#
Installation#
npm install @green-api/whatsapp-chatgpt
Dependencies (openai
and @green-api/whatsapp-chatbot-js-v2
) will be installed automatically.
Quick start#
import { WhatsappGptBot } from '@green-api/whatsapp-chatgpt';
// Initialize the bot
const bot = new WhatsappGptBot({
idInstance: "your-instance-id",
apiTokenInstance: "your-token",
openaiApiKey: "your-openai-api-key",
model: "gpt-4o",
systemMessage: "You are a useful assistant."
});
// Launch the bot
bot.start();