It's looks like;
Happy chating 🤟🏻
## 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 installAfter 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 startYou can try the DEMO.
