Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/deniskropp/nuxt-kick-start
Staging Generative AI for Nuxt Content, provides components and composables, demo app running with Content Wind theme
https://github.com/deniskropp/nuxt-kick-start
ai cms content docs education educational git-cms interactive markdown mdc nuxt nuxt-content nuxt-demo nuxt-starter nuxt-studio studio text-generation vue
Last synced: 2 months ago
JSON representation
Staging Generative AI for Nuxt Content, provides components and composables, demo app running with Content Wind theme
- Host: GitHub
- URL: https://github.com/deniskropp/nuxt-kick-start
- Owner: deniskropp
- Created: 2023-10-16T15:02:03.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-02T10:32:13.000Z (10 months ago)
- Last Synced: 2024-06-03T00:14:51.549Z (8 months ago)
- Topics: ai, cms, content, docs, education, educational, git-cms, interactive, markdown, mdc, nuxt, nuxt-content, nuxt-demo, nuxt-starter, nuxt-studio, studio, text-generation, vue
- Language: TypeScript
- Homepage: https://kick-start.nuxt.space
- Size: 11.6 MB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nuxt Kick Start
This site demos generative AI with Nuxt Content
## Intro
Testing repo and site (Kick It - Nuxt Content using generative AI)
### See also (core package, submodule)
[kick-it](https://github.com/deniskropp/kick-it)
### Nuxt Module (will use this one soon)
[nuxt-kick-it](https://github.com/deniskropp/nuxt-kick-it)
## Demo
Check out the deployment at [kick-start.nuxt.space](https://kick-start.nuxt.space).
## Checkout
```bash
git clone [email protected]:deniskropp/nuxt-kick-start
cd nuxt-kick-start
git submodule update --init
```## Setup
```bash
pnpm install
```## Development
```bash
pnpm dev
```Then open [http://localhost:3000](http://localhost:3000) to see the app.
## API
We are using [Cohere](https://cohere.ai) at the moment, please put your API key in .env!
```env
COHERE_API_KEY=xyz
```## Components
### Chat
- embed in any .md file (/content) using '::chat'
- generate content from page and component input
- allow props, e.g. 'task' or 'instruction'## Composables
### useChat
- uses useContent() for the body of the active page
- makes messages for AI end-point with content, props etc.
- returns generated content as markdown formatted string## Deployment
Learn more how to deploy on [Nuxt docs](https://nuxt.com/docs/getting-started/deployment).