feat: Update @n8n/chat exports and add example images (no-changelog) (#8274)

This commit is contained in:
Alex Grozav 2024-01-10 14:50:41 +02:00 committed by GitHub
parent b31fcdb578
commit 94c9cd4080
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 4 deletions

View file

@ -1,6 +1,12 @@
# n8n Chat
This is an embeddable Chat widget for n8n. It allows the execution of AI-Powered Workflows through a Chat window.
**Windowed Example**
![n8n Chat Windowed](https://raw.githubusercontent.com/n8n-io/n8n/master/packages/%40n8n/chat/resources/images/windowed.png)
**Fullscreen Example**
![n8n Chat Fullscreen](https://raw.githubusercontent.com/n8n-io/n8n/master/packages/%40n8n/chat/resources/images/fullscreen.png)
## Prerequisites
Create a n8n workflow which you want to execute via chat. The workflow has to be triggered using a **Chat Trigger** node.

View file

@ -1,6 +1,6 @@
{
"name": "@n8n/chat",
"version": "0.6.0",
"version": "0.6.1",
"scripts": {
"dev": "pnpm run storybook",
"build": "pnpm type-check && pnpm build:vite && pnpm run build:individual && npm run build:prepare",
@ -21,13 +21,13 @@
"build:storybook": "storybook build",
"release": "pnpm run build:full && cd dist && pnpm publish"
},
"main": "./chat.umd.cjs",
"main": "./chat.umd.js",
"module": "./chat.es.js",
"types": "./types/index.d.ts",
"exports": {
".": {
"import": "./chat.es.js",
"require": "./chat.umd.cjs"
"import": "./index.mjs",
"require": "./index.js"
},
"./style.css": {
"import": "./style.css",