[PR #509] [MERGED] Adds chat interface #581

Closed
opened 2026-02-16 01:15:29 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langserve/pull/509
Author: @jacoblee93
Created: 3/7/2024
Status: Merged
Merged: 3/8/2024
Merged by: @jacoblee93

Base: mainHead: jacob/chat_interface


📝 Commits (10+)

📊 Changes

64 files changed (+16949 additions, -6 deletions)

View changed files

.github/img/chat_playground.png (+0 -0)
📝 README.md (+50 -0)
examples/chat_playground/server.py (+64 -0)
📝 langserve/api_handler.py (+49 -0)
langserve/chat_playground.py (+98 -0)
langserve/chat_playground/.eslintrc.cjs (+18 -0)
langserve/chat_playground/.gitignore (+28 -0)
langserve/chat_playground/README.md (+27 -0)
langserve/chat_playground/dist/assets/index-a69b1f28.css (+1 -0)
langserve/chat_playground/dist/assets/index-b1c907c0.js (+139 -0)
langserve/chat_playground/dist/favicon.ico (+0 -0)
langserve/chat_playground/dist/index.html (+25 -0)
langserve/chat_playground/index.html (+23 -0)
langserve/chat_playground/package.json (+52 -0)
langserve/chat_playground/postcss.config.js (+6 -0)
langserve/chat_playground/public/favicon.ico (+0 -0)
langserve/chat_playground/src/App.css (+116 -0)
langserve/chat_playground/src/App.tsx (+38 -0)
langserve/chat_playground/src/assets/ArrowUp.svg (+1 -0)
langserve/chat_playground/src/assets/ChatIcon.svg (+6 -0)

...and 44 more files

📄 Description

CC @dqbd @eyurtsev


🔄 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/langchain-ai/langserve/pull/509 **Author:** [@jacoblee93](https://github.com/jacoblee93) **Created:** 3/7/2024 **Status:** ✅ Merged **Merged:** 3/8/2024 **Merged by:** [@jacoblee93](https://github.com/jacoblee93) **Base:** `main` ← **Head:** `jacob/chat_interface` --- ### 📝 Commits (10+) - [`7b7d843`](https://github.com/langchain-ai/langserve/commit/7b7d843d4dc39be802dd132623d04f7cfe582443) Adds chat interface - [`4f984dc`](https://github.com/langchain-ai/langserve/commit/4f984dc94f358e31b0a13beef6c26270a629142a) Add LangSmith feedback and view trace link - [`849aee2`](https://github.com/langchain-ai/langserve/commit/849aee250a58f68ce82a56fca4c7259c034cedc1) Adds opt-in feedback endpoint - [`d96141f`](https://github.com/langchain-ai/langserve/commit/d96141fca3d24e1f5927666d1c729f1533a08c22) Merge branch 'main' of https://github.com/langchain-ai/langserve into jacob/chat_interface - [`ad4786c`](https://github.com/langchain-ai/langserve/commit/ad4786c32f4a63617598f4c7dd65790f2ab25d03) Lint - [`a7887b6`](https://github.com/langchain-ai/langserve/commit/a7887b6c808a4d9e93214439a109af567626c7a4) Merge branch 'main' of https://github.com/langchain-ai/langserve into jacob/chat_interface - [`975c372`](https://github.com/langchain-ai/langserve/commit/975c3728626872741f2f5d374abd5855b77189ce) Hook up backend - [`454f5f9`](https://github.com/langchain-ai/langserve/commit/454f5f906e12fa109af564058d0cdd23ec2399bc) Allow any chain that takes a dict with one list of messages as a param - [`25e41bf`](https://github.com/langchain-ai/langserve/commit/25e41bf4baf410b18321c53666e940ecbe69d227) Support direct message outputs - [`e687f76`](https://github.com/langchain-ai/langserve/commit/e687f76f49fc5e95703811a150ed3f17976122ab) Fix nits ### 📊 Changes **64 files changed** (+16949 additions, -6 deletions) <details> <summary>View changed files</summary> ➕ `.github/img/chat_playground.png` (+0 -0) 📝 `README.md` (+50 -0) ➕ `examples/chat_playground/server.py` (+64 -0) 📝 `langserve/api_handler.py` (+49 -0) ➕ `langserve/chat_playground.py` (+98 -0) ➕ `langserve/chat_playground/.eslintrc.cjs` (+18 -0) ➕ `langserve/chat_playground/.gitignore` (+28 -0) ➕ `langserve/chat_playground/README.md` (+27 -0) ➕ `langserve/chat_playground/dist/assets/index-a69b1f28.css` (+1 -0) ➕ `langserve/chat_playground/dist/assets/index-b1c907c0.js` (+139 -0) ➕ `langserve/chat_playground/dist/favicon.ico` (+0 -0) ➕ `langserve/chat_playground/dist/index.html` (+25 -0) ➕ `langserve/chat_playground/index.html` (+23 -0) ➕ `langserve/chat_playground/package.json` (+52 -0) ➕ `langserve/chat_playground/postcss.config.js` (+6 -0) ➕ `langserve/chat_playground/public/favicon.ico` (+0 -0) ➕ `langserve/chat_playground/src/App.css` (+116 -0) ➕ `langserve/chat_playground/src/App.tsx` (+38 -0) ➕ `langserve/chat_playground/src/assets/ArrowUp.svg` (+1 -0) ➕ `langserve/chat_playground/src/assets/ChatIcon.svg` (+6 -0) _...and 44 more files_ </details> ### 📄 Description CC @dqbd @eyurtsev --- <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-16 01:15:29 -05:00
yindo closed this issue 2026-02-16 01:15:29 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/langserve#581