Skip to content

j-b-b/openai-chatgpt3-angular-clone

 
 

Repository files navigation

Fork of Open AI ChatGPT Chat Page Clone

It's looks like;

main_screen

Happy chating 🤟🏻

Installation

## Clone the repository to your local
git clone https://github.com/j-b-b/openai-chatgpt3-angular-clone.git

## Navigate to project's directory
cd openai-chatgpt3-angular-clone

## Install the packages
npm install

After these steps you have to create an OpenAI account to create an API. You can create an account from this link. Then you have to create an API key. Copy apiKey and organizationId and paste it to src/environments/environment.prod.ts and src/environments/environment.ts files as shown below.

// environment.ts file
export const environment = {
  production: false,
  organizationId: "{your organization id}",
  openAiApiKey: "{your api key}",
};

Then you are ready to run the application!

npm run start

You can try the DEMO.

About

ChatGPT UI clone for fun.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 70.5%
  • HTML 15.7%
  • JavaScript 12.4%
  • CSS 1.4%