Skip to content

Commit

Permalink
feat: Update @n8n/chat exports and add example images (no-changelog) (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgrozav authored Jan 10, 2024
1 parent b31fcdb commit 94c9cd4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions packages/@n8n/chat/README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
8 changes: 4 additions & 4 deletions packages/@n8n/chat/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit 94c9cd4

Please sign in to comment.