Description: This project involves creating a voice-activated chatbot named Aries, capable of recognizing greetings, answering queries about itself, telling jokes, providing interesting facts, and handling various user inputs. The chatbot also features music playback functionality and can open web pages like YouTube, GitHub, and LinkedIn. It aims to deliver an interactive and engaging user experience while enhancing fundamental AI programming skills.
- Run the Python script.
- The chatbot greets and prompts for input.
- Speak your query or command.
- Type 'exit' or say 'goodbye' to end the conversation.
Jaivansh Chawla
Thanks to Codsoft Team for the valuable opportunity during the Codsoft AI Internship.
Description: This project implements a Tic-Tac-Toe game where the player competes against a computer opponent. The computer uses the Mini-Max algorithm to make optimal moves, ensuring challenging gameplay. The player can choose to play first or second, and the game will display the current board state after each move.
- Run the Python script.
- Choose whether you want to play first or second.
- Enter your move by specifying a position from 1 to 9.
- The computer will make its move automatically.
- The game will continue until there is a winner or a draw.
Jaivansh Chawla
Thanks to everyone who contributed to the development of this project.
This project implements a real-time facial recognition application using OpenCV. The application captures video from the webcam and detects faces in the live feed using a pre-trained Haar Cascade classifier.
- Real-time face detection from webcam feed
- Draws rectangles around detected faces
- Full-screen display of the live video feed
- Ensure you have the required libraries installed (
opencv-python
). - Update the path to the Haar Cascade classifier in the code.
- Run the script to start the facial recognition application.
- Press 'a' to exit the application.
- Python 3.x
- OpenCV library
Jaivansh Chawla
Thanks to the OpenCV community for their resources and documentation that made this project possible.