Go to file
2024-07-14 19:43:42 -04:00
msagent.js add image upload support 2024-07-14 19:35:00 -04:00
protocol add image upload support 2024-07-14 19:35:00 -04:00
server add image upload support 2024-07-14 19:35:00 -04:00
webapp fix wordbubble sticking 2024-07-14 19:43:42 -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 format code with prettier 2024-07-14 15:26:05 -04:00
README.md add LICENSE.md and fill out readme 2024-07-12 22:28:09 -04: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 workspace @msagent-chat/msagent.js build
yarn workspace @msagent-chat/protocol build
yarn workspace @msagent-chat/webapp build
yarn workspace @msagent-chat/server build
  1. Copy server/config.example.toml to server/config.toml and fill out the relevant fields.
  2. 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