[feat] Add support for creating whatsapp bot using embedchain (#458)

This commit is contained in:
Deshraj Yadav
2023-08-19 14:12:48 -07:00
committed by GitHub
parent 35b022d6bc
commit f29443a0fc
7 changed files with 146 additions and 19 deletions

View File

@@ -0,0 +1,10 @@
from embedchain.bots.whatsapp import WhatsAppBot
def main():
whatsapp_bot = WhatsAppBot()
whatsapp_bot.start()
if __name__ == "__main__":
main()