This bot sends WhatsApp messages with Google Calendar event description for today. You can integrate OpenAI to generate messages with an artificial intelligence to get these messages like "Write a birthday greeting for Peter" as summary event.
The message will be sent to all attenders email in the event that match with wid (WhatsApp ID) format /[0-9]+@[cg].us/ where the user is the phone number of the contact with the prefix. If my contact is +00 123 456 789 at the event I will add [email protected] as attender. Domain c.us is for contact chat and g.us is for group chat.
Export and save your calendar in iCal format. Go to calendar settings and click on Export calendar
button to download an .ics file:
Add the path to the .ics file as an argument starting the script:
node index.js --ical <path_to_ics_file>
If you don't set an API key for openai or add a event description, text will be sent by default. Generate your OpenAI API key from https://beta.openai.com/account/api-keys and set as OPENAI_SECRET_KEY
This option allows you to connect with Google Calendar and avoid exporting your calendar by allowing you to add events dynamically.
Enable Calendar API and generate OAuth desktop client credential from https://console.cloud.google.com/apis/credentials and download JSON file as credentials.json
Generate calendar for bot events
Get calendar ID from Google Calendar settings and set as CALENDAR_ID
Create an .env file or define the following environment variables:
OPENAI_SECRET_KEY=sk-...HeFI (optional)
[email protected] (optional, primary by default)
- Generate event in Google Calendar with summary "Write congratulations message for my friend Peter" and attender/s "[email protected]" to generate AI message or simply add description text to send specific message.
- Install the dependencies with
npm i
- Start the NodeJS script with
node index.js --ical <path_to_ics_file>
ornode index.js
with Google API credentials - Link the whatsapp account by scanning the QR code that shows the terminal
node index.js --help
Usage
node index.js
Options
-h, --help Display this usage guide.
--ical <files> iCal files to find events
--event <event> Test event to send
Project home: https://github.com/sergiogragera/whatsapp-calendar-gpt-bot
For test purposing, the script allows an event in JSON format to throw as an argument to run the script.
- Send a test message from description event to [email protected]:
node index.js --event "{\"summary\": \"Write a test message\", \"description\":\"Test message\", \"attendees\": [{\"email\": \"[email protected]\"}]}"
- Send a OpenAI generated message from summary to [email protected]:
node index.js --event "{\"summary\": \"Write congratulations message for my friend Peter\", \"attendees\": [{\"email\": \"[email protected]\"}]}"