[PR #70] [CLOSED] 1. 新会话缺乏会话id 2. markdown a标签换行 #138

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

📋 Pull Request Information

Original PR: https://github.com/langgenius/webapp-conversation/pull/70
Author: @EchoChen012
Created: 5/7/2024
Status: Closed

Base: mainHead: new-chat-active


📝 Commits (10+)

📊 Changes

78 files changed (+2076 additions, -151 deletions)

View changed files

.dockerignore (+10 -0)
📝 .env.example (+9 -3)
📝 .gitignore (+3 -1)
.vscode/launch.json (+0 -28)
.vscode/settings.json (+0 -32)
📝 Dockerfile (+40 -5)
__tests__/route.test.ts (+23 -0)
__tests__/server.test.ts (+41 -0)
app/api/auth/route.ts (+65 -0)
app/api/conversations/[conversationId]/route.ts (+15 -0)
app/api/messages/[messageId]/suggested/route.ts (+12 -0)
📝 app/api/parameters/route.ts (+3 -0)
📝 app/api/utils/common.ts (+52 -2)
app/api/utils/speedyagency.ts (+34 -0)
app/auth/auth.scss (+155 -0)
app/auth/page.tsx (+66 -0)
📝 app/components/base/app-icon/index.tsx (+3 -4)
app/components/base/app-icon/logo.svg (+14 -0)
📝 app/components/base/app-icon/style.module.css (+2 -2)
app/components/base/confirm-ui/index.tsx (+52 -0)

...and 58 more files

📄 Description

No description provided


🔄 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/langgenius/webapp-conversation/pull/70 **Author:** [@EchoChen012](https://github.com/EchoChen012) **Created:** 5/7/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `new-chat-active` --- ### 📝 Commits (10+) - [`5834426`](https://github.com/langgenius/webapp-conversation/commit/5834426056eaff2496838b1c389ee908bcc7bda6) 完善 UI - [`c3d379f`](https://github.com/langgenius/webapp-conversation/commit/c3d379fe70f96371c2cd11743759220795fc6bd0) 完善 docker 配置 - [`eeb2f75`](https://github.com/langgenius/webapp-conversation/commit/eeb2f75c2fa114cdf134d01c06400050fd32eb43) 完善 對話 超 max token 處理 - [`4c54c97`](https://github.com/langgenius/webapp-conversation/commit/4c54c97ca4e573251064114b5254626e87302723) 完善 build 流程,完善 docker build 流程 - [`bf7f32a`](https://github.com/langgenius/webapp-conversation/commit/bf7f32a69efd9a6d9e111bc84b4e1589d8706090) 完善身份验证 - [`74c91d0`](https://github.com/langgenius/webapp-conversation/commit/74c91d04f27290643dab6f5530aab33e3feb723e) 完善 auth 驗證 - [`2fc55ad`](https://github.com/langgenius/webapp-conversation/commit/2fc55ad5f4b4794f25297dbc24cb2922a1ee5e0b) 修正 mobile view 下 chat-input 位置問題 - [`768fca1`](https://github.com/langgenius/webapp-conversation/commit/768fca1d037f9417c61386e75f5840f2f03357ea) 完善 Auth 驗證 - [`bb871dd`](https://github.com/langgenius/webapp-conversation/commit/bb871dd9d693a9426bf3c1ccbe227da96a66213d) 增加 hash 快捷登入 API - [`f226de9`](https://github.com/langgenius/webapp-conversation/commit/f226de96cc9de65d452808bd248f9ae704f1bdb1) 完善頁面跳轉 ### 📊 Changes **78 files changed** (+2076 additions, -151 deletions) <details> <summary>View changed files</summary> ➕ `.dockerignore` (+10 -0) 📝 `.env.example` (+9 -3) 📝 `.gitignore` (+3 -1) ➖ `.vscode/launch.json` (+0 -28) ➖ `.vscode/settings.json` (+0 -32) 📝 `Dockerfile` (+40 -5) ➕ `__tests__/route.test.ts` (+23 -0) ➕ `__tests__/server.test.ts` (+41 -0) ➕ `app/api/auth/route.ts` (+65 -0) ➕ `app/api/conversations/[conversationId]/route.ts` (+15 -0) ➕ `app/api/messages/[messageId]/suggested/route.ts` (+12 -0) 📝 `app/api/parameters/route.ts` (+3 -0) 📝 `app/api/utils/common.ts` (+52 -2) ➕ `app/api/utils/speedyagency.ts` (+34 -0) ➕ `app/auth/auth.scss` (+155 -0) ➕ `app/auth/page.tsx` (+66 -0) 📝 `app/components/base/app-icon/index.tsx` (+3 -4) ➕ `app/components/base/app-icon/logo.svg` (+14 -0) 📝 `app/components/base/app-icon/style.module.css` (+2 -2) ➕ `app/components/base/confirm-ui/index.tsx` (+52 -0) _...and 58 more files_ </details> ### 📄 Description _No description provided_ --- <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 10:16:15 -05:00
yindo closed this issue 2026-02-16 10:16:15 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/webapp-conversation#138