DIAL Chat is a default UI for AI DIAL. AI DIAL can be used as headless system, but UI is recommended to learn the capability.
Originally forked from chatbot-ui and then completely reworked and published under apache 2.0 license, while code taken from original repository is still subject to original MIT license. Due to rework we introduced lots of new features such as various IDP support, model side-by-side compare, DIAL extensions support, conversation replays, branding and many more.
This repository is managed as monorepo by NX tools.
DIAL Chatdocumentation placed here.DIAL Chat Themingdocumentation is placed here.DIAL Overlaydocumentation is placed here.DIAL Chat Visualizer Connectordocumentation is placed here.DIAL Visualizer Connectordocumentation is placed here.DIAL Custom Viewersdocumentation is placed here.
In AI DIAL repository, you can find a user guide for the AI DIAL Chat application.
To work with this repo we are using NX.
Note: All commands could be found in scripts section in package.json.
npm iRun this command to build all projects which support this target (chat, overlay-sandbox):
npm run buildTo run the project, it is recommended to use npm run nx serve with the specified project name:
npm run nx serve project-nameRun this command to run tests for the full repository:
npm run testRun this command to initiate npm publish for all publishable libraries:
npm run publish -- --ver=*.*.* --tag=* --dry --developmentParameters (all optional):
ver - version to publish
dry - dry run
tag - tag to publish with (default: 'next')
development - if set without a version provided, will increment a version automatically according to the current version of the global package.json version (e.g. 0.5.0-rc.1, 0.5.0-rc.2, etc.)
In dry mode, nothing is published, just displayed on the screen:
npm run publish -- --dryor
npm run publish:dry