Welcome to the ChatGPT Realtime Chat Application repository! This project was developed by a team of four students: Yogesh Baghel, Vikas Kumar Singh, Shiv Kumar Singh, and Rishabh Pal.
The ChatGPT Realtime Chat Application is a full-stack web application that allows users to engage in real-time conversations with both human counterparts and an AI agent powered by OpenAI's GPT-3 model. The application leverages modern web technologies such as React, Node.js, and Chat Engine to provide a seamless and interactive chatting experience.
- Real-time chat functionality
- Integration with OpenAI's GPT-3 model for AI-assisted conversations
- User authentication and authorization
- Secure communication using HTTPS
- Responsive design for optimal user experience on various devices
To get started with the ChatGPT Realtime Chat Application, follow these steps:
- Clone the repository to your local machine:
git clone https://github.com/yogesh-hack/chatgpt-realtime-chat-application.git
- Install dependencies for both the frontend and backend:
cd chatgpt-realtime-chat-application
cd client && npm install
cd ../server && npm install
-
Set up environment variables:
- Create a
.env
file in theserver
directory. - Define the following environment variables in the
.env
file:
PORT=9000 OPEN_API_KEY=your_openai_api_key
- Create a
-
Start the development servers:
# Start the backend server
cd server && npm start
# Start the frontend server
cd ../client && npm start
- Access the application in your web browser at
http://localhost:3000
.
Thank you...