Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/humanloop/hl-chatgpt-clone-typescript
Repo for ChatGPT clone tutorial in Next.js using Humanloop.
https://github.com/humanloop/hl-chatgpt-clone-typescript
Last synced: 2 days ago
JSON representation
Repo for ChatGPT clone tutorial in Next.js using Humanloop.
- Host: GitHub
- URL: https://github.com/humanloop/hl-chatgpt-clone-typescript
- Owner: humanloop
- Created: 2023-05-12T13:29:30.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-13T10:43:40.000Z (8 months ago)
- Last Synced: 2024-08-13T07:17:00.076Z (3 months ago)
- Language: TypeScript
- Homepage:
- Size: 318 KB
- Stars: 18
- Watchers: 3
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - humanloop/hl-chatgpt-clone-typescript - Repo for ChatGPT clone tutorial in Next.js using Humanloop. (TypeScript)
README
This is the complete source code repository for the Humanloop [ChatGPT-clone tutorial](https://docs.humanloop.com/docs/tutorials/chatgpt-clone).
## Getting Started
Clone the repository and run `npm i` to install dependencies.
Add a `.env.local` file at the root of the project and include your Humanloop API key:
```
HUMANLOOP_API_KEY=...
```Run the development server:
```bash
npm run dev
# or
yarn dev
# or
pnpm dev
```Open [http://localhost:3000](http://localhost:3000) in your browser to see the result.
## Learn More
To learn more about using Humanloop, check out the tutorials and guides in our [documentation](https://docs.humanloop.com/).
To learn more about Next.js, take a look at the following resources:
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.