[PR #691] [CLOSED] Fix: completion log error #22636

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

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify/pull/691
Author: @takatost
Created: 7/31/2023
Status: Closed

Base: mainHead: fix/conversation-log-error


📝 Commits (10+)

  • 9e83ce7 Merge branch 'fix/emoji-data-init' into deploy/dev
  • 32c02a2 feat: readonly not check api
  • 167d857 fix: agent response format nouns error in claude model
  • b7695ff Merge branch 'feat/universal-chat' into deploy/dev
  • efbc846 feat: though ui
  • 1345475 add default value
  • ba44190 delete test file
  • 4f1b4b7 delete test file
  • b615aa7 Merge branch 'feat/milvus-support' into deploy/dev
  • 65f032d migration merge

📊 Changes

38 files changed (+1724 additions, -457 deletions)

View changed files

📝 api/README.md (+1 -1)
📝 api/commands.py (+20 -16)
📝 api/controllers/console/app/conversation.py (+2 -6)
📝 api/controllers/console/app/statistic.py (+65 -0)
api/core/index/vector_index/test-embedding.py (+123 -0)
📝 api/core/prompt/prompt_template.py (+0 -1)
📝 api/docker/entrypoint.sh (+2 -1)
📝 api/migrations/versions/8d2d099ceb74_add_qa_model_support.py (+1 -1)
📝 api/models/model.py (+10 -3)
📝 api/tasks/add_document_to_index_task.py (+1 -1)
📝 api/tasks/clean_dataset_task.py (+1 -1)
📝 api/tasks/clean_document_task.py (+1 -1)
📝 api/tasks/clean_notion_document_task.py (+1 -1)
📝 api/tasks/create_segment_to_index_task.py (+1 -1)
📝 api/tasks/deal_dataset_vector_index_task.py (+1 -1)
📝 api/tasks/document_indexing_sync_task.py (+1 -1)
📝 api/tasks/document_indexing_task.py (+1 -1)
📝 api/tasks/document_indexing_update_task.py (+1 -1)
📝 api/tasks/enable_segment_to_index_task.py (+1 -1)
📝 api/tasks/generate_conversation_summary_task.py (+1 -1)

...and 18 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/dify/pull/691 **Author:** [@takatost](https://github.com/takatost) **Created:** 7/31/2023 **Status:** ❌ Closed **Base:** `main` ← **Head:** `fix/conversation-log-error` --- ### 📝 Commits (10+) - [`9e83ce7`](https://github.com/langgenius/dify/commit/9e83ce7a9dd70fe316218f65003f9c612702bc1b) Merge branch 'fix/emoji-data-init' into deploy/dev - [`32c02a2`](https://github.com/langgenius/dify/commit/32c02a2bd2438b81a62e25a77fe8b87ab702005b) feat: readonly not check api - [`167d857`](https://github.com/langgenius/dify/commit/167d8574512271464f91fa8fd33d57367925f3fd) fix: agent response format nouns error in claude model - [`b7695ff`](https://github.com/langgenius/dify/commit/b7695ffc03eaceebb1d32697575aa123f1a25b9a) Merge branch 'feat/universal-chat' into deploy/dev - [`efbc846`](https://github.com/langgenius/dify/commit/efbc8468a8af59edb08bdf004ebc5854f0038302) feat: though ui - [`1345475`](https://github.com/langgenius/dify/commit/13454750615b61f6191988374b53f382add70ae9) add default value - [`ba44190`](https://github.com/langgenius/dify/commit/ba44190802820544e21bdfadbc4b815474cbca77) delete test file - [`4f1b4b7`](https://github.com/langgenius/dify/commit/4f1b4b73264519b45aaaa32f5d9a647e406f4ad2) delete test file - [`b615aa7`](https://github.com/langgenius/dify/commit/b615aa79767d322611cba8037d401ac7db43d29b) Merge branch 'feat/milvus-support' into deploy/dev - [`65f032d`](https://github.com/langgenius/dify/commit/65f032de9a465b80bcab367297b0a76283566699) migration merge ### 📊 Changes **38 files changed** (+1724 additions, -457 deletions) <details> <summary>View changed files</summary> 📝 `api/README.md` (+1 -1) 📝 `api/commands.py` (+20 -16) 📝 `api/controllers/console/app/conversation.py` (+2 -6) 📝 `api/controllers/console/app/statistic.py` (+65 -0) ➕ `api/core/index/vector_index/test-embedding.py` (+123 -0) 📝 `api/core/prompt/prompt_template.py` (+0 -1) 📝 `api/docker/entrypoint.sh` (+2 -1) 📝 `api/migrations/versions/8d2d099ceb74_add_qa_model_support.py` (+1 -1) 📝 `api/models/model.py` (+10 -3) 📝 `api/tasks/add_document_to_index_task.py` (+1 -1) 📝 `api/tasks/clean_dataset_task.py` (+1 -1) 📝 `api/tasks/clean_document_task.py` (+1 -1) 📝 `api/tasks/clean_notion_document_task.py` (+1 -1) 📝 `api/tasks/create_segment_to_index_task.py` (+1 -1) 📝 `api/tasks/deal_dataset_vector_index_task.py` (+1 -1) 📝 `api/tasks/document_indexing_sync_task.py` (+1 -1) 📝 `api/tasks/document_indexing_task.py` (+1 -1) 📝 `api/tasks/document_indexing_update_task.py` (+1 -1) 📝 `api/tasks/enable_segment_to_index_task.py` (+1 -1) 📝 `api/tasks/generate_conversation_summary_task.py` (+1 -1) _...and 18 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-21 20:19:24 -05:00
yindo closed this issue 2026-02-21 20:19:24 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify#22636