Go to file
2024-07-20 09:52:53 -04:00
msagent.js Minor animation improvements 2024-07-20 08:32:09 -04:00
protocol add image upload support 2024-07-14 19:35:00 -04:00
server fix username duplication bug 2024-07-17 13:16:37 -04:00
webapp Update CSS to look good on mobile 2024-07-20 09:52:53 -04:00
.editorconfig First commit 2024-07-01 23:37:57 -04:00
.gitattributes First commit 2024-07-01 23:37:57 -04:00
.gitignore msagent.js: Rewrite decompression to use WASM 2024-07-09 18:53:18 -04:00
.prettierrc.json msagent.js: add wordballoon code 2024-07-02 23:04:45 -04:00
.yarnrc.yml First commit 2024-07-01 23:37:57 -04:00
LICENSE.md add LICENSE.md and fill out readme 2024-07-12 22:28:09 -04:00
package.json Add build all script 2024-07-17 20:12:11 +02:00
README.md Add build all script 2024-07-17 20:12:11 +02:00
yarn.lock add image upload support 2024-07-14 19:35:00 -04:00

msagent-chat

Monorepo for the Computernewb Agent Chat project

Includes:

  • msagent.js/: A JavaScript library for parsing and displaying Microsoft Agent ACS files
  • protocol/ Shared JSON protocol types for the webapp and server
  • webapp/ The Agent Chat Webapp
  • server/ - The Agent Chat Server

Jumpstart

  1. Install dependencies: yarn
  2. Build everything: yarn build
  3. Copy server/config.example.toml to server/config.toml and fill out the relevant fields.
  4. Run the server: yarn workspace @msagent-chat/server serve
    • Run the webapp on the development webserver: yarn workspace @msagent-chat/webapp serve; OR
    • Copy the webapp contents from webapp/dist/ to your webroot