Chatbot using C++

Aditi Chauhan Aug 01, 2021

Chatbots are the computer program that uses Artificial intelligence system that interacts with the user through text or voice. It saves time with automation.

It is a simple project in C++ that uses an Artificial Intelligence system that can simulate a conversation with a user through text and give answers through text or voice. The main aim of this project is to develop a chatbot which is works in online and offline mode.
In this i am using espeak software which convert the text into speech.In this project i am using this espeak application.
string phrase = "Good Afternoon sir";
string command = "espeak \""+ phrase + "\"";
const char *charCommand = command.c_str();
system(charCommand);

Project Files

Loading...
..
This directory is empty.

Comments (0)

Leave a Comment