[PR #196] [MERGED] Feat: explore apps #22359

Closed
opened 2026-02-21 20:18:47 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify/pull/196
Author: @takatost
Created: 5/25/2023
Status: Merged
Merged: 5/25/2023
Merged by: @takatost

Base: mainHead: feat/explore-apps


📝 Commits (10+)

  • 2439d51 feat: recommended app model config detail api
  • 8b56555 feat: add explorer completion & chat apis
  • 488f6b6 feat: add account support in saved message and web conversation
  • 1bbd5d9 feat: completed test explore apps
  • 6ec916a fix: app_owner_tenant_id not set
  • e9a4df5 fix: npe when installed_app.app not found
  • 7f1ed21 fix: installed apps get from wrong tenant
  • 9319cf5 fix: source error in installed app
  • cb54a80 fix: missing route saved_message
  • e00f56f fix: end_user passed in conversations

📊 Changes

20 files changed (+1197 additions, -231 deletions)

View changed files

📝 api/commands.py (+1 -1)
📝 api/controllers/console/__init__.py (+8 -4)
api/controllers/console/admin.py (+135 -0)
api/controllers/console/app/explore.py (+0 -209)
api/controllers/console/explore/completion.py (+180 -0)
api/controllers/console/explore/conversation.py (+127 -0)
api/controllers/console/explore/error.py (+20 -0)
api/controllers/console/explore/installed_app.py (+143 -0)
api/controllers/console/explore/message.py (+196 -0)
api/controllers/console/explore/parameter.py (+43 -0)
api/controllers/console/explore/recommended_app.py (+139 -0)
api/controllers/console/explore/saved_message.py (+79 -0)
api/controllers/console/explore/wraps.py (+48 -0)
📝 api/controllers/web/conversation.py (+1 -1)
📝 api/controllers/web/wraps.py (+5 -2)
api/migrations/versions/9f4e3427ea84_add_created_by_role.py (+46 -0)
📝 api/models/web.py (+4 -2)
📝 api/services/message_service.py (+1 -1)
📝 api/services/saved_message_service.py (+11 -6)
📝 api/services/web_conversation_service.py (+10 -5)

📄 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/dify/pull/196 **Author:** [@takatost](https://github.com/takatost) **Created:** 5/25/2023 **Status:** ✅ Merged **Merged:** 5/25/2023 **Merged by:** [@takatost](https://github.com/takatost) **Base:** `main` ← **Head:** `feat/explore-apps` --- ### 📝 Commits (10+) - [`2439d51`](https://github.com/langgenius/dify/commit/2439d51231c7c92c7767267a6fcf2768f9a55938) feat: recommended app model config detail api - [`8b56555`](https://github.com/langgenius/dify/commit/8b5655543736ef5fe07980baa675488679046dad) feat: add explorer completion & chat apis - [`488f6b6`](https://github.com/langgenius/dify/commit/488f6b6d702918c2b779d1446f2a7dbf270ab27f) feat: add account support in saved message and web conversation - [`1bbd5d9`](https://github.com/langgenius/dify/commit/1bbd5d9393a4782c64999301f7932d617de6ce8c) feat: completed test explore apps - [`6ec916a`](https://github.com/langgenius/dify/commit/6ec916a2f3cafd20dd98a4fc5596914171326a6a) fix: app_owner_tenant_id not set - [`e9a4df5`](https://github.com/langgenius/dify/commit/e9a4df5327505a4a8cdce66afe11d6885c0b08e9) fix: npe when installed_app.app not found - [`7f1ed21`](https://github.com/langgenius/dify/commit/7f1ed21e61ee084db29077c32eb0ddb465091920) fix: installed apps get from wrong tenant - [`9319cf5`](https://github.com/langgenius/dify/commit/9319cf54bf2547dc285b89d2065cd782d42f5e6c) fix: source error in installed app - [`cb54a80`](https://github.com/langgenius/dify/commit/cb54a80483b09d34a6554e304ac4853bc4ee0716) fix: missing route saved_message - [`e00f56f`](https://github.com/langgenius/dify/commit/e00f56fdb468681b9d188a0b6aae5c2e2108eaed) fix: end_user passed in conversations ### 📊 Changes **20 files changed** (+1197 additions, -231 deletions) <details> <summary>View changed files</summary> 📝 `api/commands.py` (+1 -1) 📝 `api/controllers/console/__init__.py` (+8 -4) ➕ `api/controllers/console/admin.py` (+135 -0) ➖ `api/controllers/console/app/explore.py` (+0 -209) ➕ `api/controllers/console/explore/completion.py` (+180 -0) ➕ `api/controllers/console/explore/conversation.py` (+127 -0) ➕ `api/controllers/console/explore/error.py` (+20 -0) ➕ `api/controllers/console/explore/installed_app.py` (+143 -0) ➕ `api/controllers/console/explore/message.py` (+196 -0) ➕ `api/controllers/console/explore/parameter.py` (+43 -0) ➕ `api/controllers/console/explore/recommended_app.py` (+139 -0) ➕ `api/controllers/console/explore/saved_message.py` (+79 -0) ➕ `api/controllers/console/explore/wraps.py` (+48 -0) 📝 `api/controllers/web/conversation.py` (+1 -1) 📝 `api/controllers/web/wraps.py` (+5 -2) ➕ `api/migrations/versions/9f4e3427ea84_add_created_by_role.py` (+46 -0) 📝 `api/models/web.py` (+4 -2) 📝 `api/services/message_service.py` (+1 -1) 📝 `api/services/saved_message_service.py` (+11 -6) 📝 `api/services/web_conversation_service.py` (+10 -5) </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-21 20:18:47 -05:00
yindo closed this issue 2026-02-21 20:18:47 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify#22359