[PR #390] [CLOSED] Embed chat on any website using a <script> #3333

Closed
opened 2026-02-22 18:33:34 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/390
Author: @shatfield4
Created: 11/17/2023
Status: Closed

Base: masterHead: 355-embed-chat-into-website


📝 Commits (2)

  • b96a8f9 WIP embedded chat store uuid in localStorage and pass to backend
  • cc8b886 create embedded vite app that compiles down to single js file/hosts on yarn serve

📊 Changes

17 files changed (+443 additions, -0 deletions)

View changed files

embedded-app/.eslintrc.cjs (+20 -0)
embedded-app/.gitignore (+24 -0)
embedded-app/README.md (+8 -0)
embedded-app/index.html (+13 -0)
embedded-app/package.json (+34 -0)
embedded-app/postcss.config.js (+6 -0)
embedded-app/public/vite.svg (+1 -0)
embedded-app/src/App.css (+42 -0)
embedded-app/src/App.jsx (+223 -0)
embedded-app/src/assets/anything-llm-dark.png (+0 -0)
embedded-app/src/assets/react.svg (+1 -0)
embedded-app/src/assets/vite.svg (+1 -0)
embedded-app/src/index.css (+3 -0)
embedded-app/src/main.jsx (+15 -0)
embedded-app/tailwind.config.js (+9 -0)
embedded-app/vite.config.js (+32 -0)
📝 server/endpoints/chat.js (+11 -0)

📄 Description

resolves #355

Create embedded chats for specific workspaces that can be embedded on other websites so that users can chat with the documents of a workspace from anywhere.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Mintplex-Labs/anything-llm/pull/390 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 11/17/2023 **Status:** ❌ Closed **Base:** `master` ← **Head:** `355-embed-chat-into-website` --- ### 📝 Commits (2) - [`b96a8f9`](https://github.com/Mintplex-Labs/anything-llm/commit/b96a8f971e0ea27e4c43f01d61c6f44367a72aba) WIP embedded chat store uuid in localStorage and pass to backend - [`cc8b886`](https://github.com/Mintplex-Labs/anything-llm/commit/cc8b886e14397bccb467940777f9c11422d6cbbc) create embedded vite app that compiles down to single js file/hosts on yarn serve ### 📊 Changes **17 files changed** (+443 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `embedded-app/.eslintrc.cjs` (+20 -0) ➕ `embedded-app/.gitignore` (+24 -0) ➕ `embedded-app/README.md` (+8 -0) ➕ `embedded-app/index.html` (+13 -0) ➕ `embedded-app/package.json` (+34 -0) ➕ `embedded-app/postcss.config.js` (+6 -0) ➕ `embedded-app/public/vite.svg` (+1 -0) ➕ `embedded-app/src/App.css` (+42 -0) ➕ `embedded-app/src/App.jsx` (+223 -0) ➕ `embedded-app/src/assets/anything-llm-dark.png` (+0 -0) ➕ `embedded-app/src/assets/react.svg` (+1 -0) ➕ `embedded-app/src/assets/vite.svg` (+1 -0) ➕ `embedded-app/src/index.css` (+3 -0) ➕ `embedded-app/src/main.jsx` (+15 -0) ➕ `embedded-app/tailwind.config.js` (+9 -0) ➕ `embedded-app/vite.config.js` (+32 -0) 📝 `server/endpoints/chat.js` (+11 -0) </details> ### 📄 Description resolves #355 Create embedded chats for specific workspaces that can be embedded on other websites so that users can chat with the documents of a workspace from anywhere. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-22 18:33:34 -05:00
yindo closed this issue 2026-02-22 18:33:34 -05:00
yindo changed title from [PR #390] Embed chat on any website using a <script> to [PR #390] [CLOSED] Embed chat on any website using a <script> 2026-06-05 15:12:52 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#3333