@forgeflowai/chat
Version:
This is an embeddable Chat widget for n8n. It allows the execution of AI-Powered Workflows through a Chat window.
17 lines (16 loc) • 388 B
TypeScript
import type { StoryObj } from '@storybook/vue3';
declare const meta: {
title: string;
render: (args: ChatOptions) => {
setup(): {};
template: string;
};
parameters: {
layout: string;
};
tags: string[];
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Fullscreen: Story;
export declare const Windowed: Story;