Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 1008 Bytes

README.md

File metadata and controls

42 lines (31 loc) · 1008 Bytes

ChatGPT Clone

A ChatGPT-clone built with modern technologies to interact with OpenAI's API and mimic ChatGPT functionalities. This project includes both frontend and backend implementations with seamless API integration.

🚀 Features

  • 🗨️ Chat Interface: Real-time messaging with GPT-4 models
  • 🔑 API Integration: Uses OpenAI API for chatbot responses
  • 🛠 Technologies Used:
    • Frontend: React.js
    • Backend: Node.js / Express
    • API: OpenAI GPT-4 API

📦 Installation

  1. Clone the repository:

    git clone https://github.com/tipizzo/chatgpt-clone.git
    cd chatgpt-clone
    
  2. Install dependencies:

    npm install
    
  3. Set up environment variables: Create a .env file in the backend directory and add your OPENAI API Key OPENAI_API_KEY=<your-secret-key>

  4. Run the application:

    • Backend
    cd backend
    npm run start
    
    • Frontend
    cd clone
    npm start