https://github.com/cedpoilly/recipe-generator
Started live on Twitch, here is a demo of how to stream the response from the OpenAI GPT API. It is currently a recipe generator which asks for a list of ingredients and the number of servings.
https://github.com/cedpoilly/recipe-generator
formidable h3 nuxt3 openai recipes
Last synced: 3 months ago
JSON representation
Started live on Twitch, here is a demo of how to stream the response from the OpenAI GPT API. It is currently a recipe generator which asks for a list of ingredients and the number of servings.
- Host: GitHub
- URL: https://github.com/cedpoilly/recipe-generator
- Owner: cedpoilly
- Created: 2023-07-12T19:05:24.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-04T11:43:43.000Z (about 2 years ago)
- Last Synced: 2025-01-14T00:25:38.470Z (9 months ago)
- Topics: formidable, h3, nuxt3, openai, recipes
- Language: Vue
- Homepage: https://recipe.cedpoilly.dev/
- Size: 125 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nuxt 3 Minimal Starter
Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
## Setup
Make sure to install the dependencies:
```bash
# npm
npm install# pnpm
pnpm install# yarn
yarn install
```## Development Server
Start the development server on `http://localhost:3000`:
```bash
# npm
npm run dev# pnpm
pnpm run dev# yarn
yarn dev
```## Production
Build the application for production:
```bash
# npm
npm run build# pnpm
pnpm run build# yarn
yarn build
```Locally preview production build:
```bash
# npm
npm run preview# pnpm
pnpm run preview# yarn
yarn preview
```Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.