[PR #525] [CLOSED] plugin(table-cooking): Smooth Q&A | Cook your tabular data to perfection! #1421

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

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify-official-plugins/pull/525
Author: @QIN2DIM
Created: 3/20/2025
Status: Closed

Base: mainHead: table-cooking


📝 Commits (10+)

📊 Changes

35 files changed (+3030 additions, -0 deletions)

View changed files

tools/table_cooking/.difyignore (+178 -0)
tools/table_cooking/.env.example (+4 -0)
tools/table_cooking/.gitignore (+174 -0)
tools/table_cooking/GUIDE.md (+117 -0)
tools/table_cooking/PRIVACY.md (+3 -0)
tools/table_cooking/README.md (+10 -0)
tools/table_cooking/_assets/icon.svg (+1 -0)
tools/table_cooking/main.py (+6 -0)
tools/table_cooking/manifest.yaml (+48 -0)
tools/table_cooking/provider/table_cooking.py (+14 -0)
tools/table_cooking/provider/table_cooking.yaml (+17 -0)
tools/table_cooking/requirements.txt (+26 -0)
tools/table_cooking/tools/__init__.py (+0 -0)
tools/table_cooking/tools/ai/__init__.py (+0 -0)
tools/table_cooking/tools/ai/table_self_query.py (+774 -0)
tools/table_cooking/tools/ai/templates/_tmp.xml (+85 -0)
tools/table_cooking/tools/ai/templates/cite_knowledge/json_mode_with_multipart.xml (+95 -0)
tools/table_cooking/tools/ai/templates/cite_knowledge/question_classifier.xml (+28 -0)
tools/table_cooking/tools/ai/templates/cite_knowledge/standard_mode.xml (+38 -0)
tools/table_cooking/tools/ai/templates/cite_knowledge/system_prompt_cite_knowledge.xml (+90 -0)

...and 15 more files

📄 Description

todo

  • Replace comments in English
  • Delete irrelevant code
  • Replace the invoke component compatible with Dify
  • Agent Strategy Performance Optimization
  • Add necessary documentation
  • Add Demo

🔄 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-official-plugins/pull/525 **Author:** [@QIN2DIM](https://github.com/QIN2DIM) **Created:** 3/20/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `table-cooking` --- ### 📝 Commits (10+) - [`8e5eb44`](https://github.com/langgenius/dify-official-plugins/commit/8e5eb44315953c0d293df7b1aeaa8f12932d5f0f) ff - [`4760203`](https://github.com/langgenius/dify-official-plugins/commit/4760203cdd894520170f2a700c3925d3b1930fc5) ff - [`231dbbc`](https://github.com/langgenius/dify-official-plugins/commit/231dbbc7d9b2f068b7c1265ef8b43596413daa33) ff - [`57000b1`](https://github.com/langgenius/dify-official-plugins/commit/57000b12f519acdae3199649bfe3e58833bb853c) fix bug - [`b0f8b46`](https://github.com/langgenius/dify-official-plugins/commit/b0f8b46e10da324ccc69e1dc698252a614a1fe6f) feat(validation): prevent stupidity - [`8c3f2fd`](https://github.com/langgenius/dify-official-plugins/commit/8c3f2fd65c8e3c77c068366afe327a1511c0bb85) ff - [`b266de9`](https://github.com/langgenius/dify-official-plugins/commit/b266de9fae477ced69ec00241d08f0a79edd1c2b) ff - [`41f630f`](https://github.com/langgenius/dify-official-plugins/commit/41f630f7a6255d6997ffe2a1fe5ffacb3ad84dea) ff - [`2f87900`](https://github.com/langgenius/dify-official-plugins/commit/2f879008f0c1cbc819bc39bdf0aa320dd3f87e3a) Update service.py - [`56b2f94`](https://github.com/langgenius/dify-official-plugins/commit/56b2f94cc31d0f0be4421846ad9094379e79595d) Update service.py ### 📊 Changes **35 files changed** (+3030 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `tools/table_cooking/.difyignore` (+178 -0) ➕ `tools/table_cooking/.env.example` (+4 -0) ➕ `tools/table_cooking/.gitignore` (+174 -0) ➕ `tools/table_cooking/GUIDE.md` (+117 -0) ➕ `tools/table_cooking/PRIVACY.md` (+3 -0) ➕ `tools/table_cooking/README.md` (+10 -0) ➕ `tools/table_cooking/_assets/icon.svg` (+1 -0) ➕ `tools/table_cooking/main.py` (+6 -0) ➕ `tools/table_cooking/manifest.yaml` (+48 -0) ➕ `tools/table_cooking/provider/table_cooking.py` (+14 -0) ➕ `tools/table_cooking/provider/table_cooking.yaml` (+17 -0) ➕ `tools/table_cooking/requirements.txt` (+26 -0) ➕ `tools/table_cooking/tools/__init__.py` (+0 -0) ➕ `tools/table_cooking/tools/ai/__init__.py` (+0 -0) ➕ `tools/table_cooking/tools/ai/table_self_query.py` (+774 -0) ➕ `tools/table_cooking/tools/ai/templates/_tmp.xml` (+85 -0) ➕ `tools/table_cooking/tools/ai/templates/cite_knowledge/json_mode_with_multipart.xml` (+95 -0) ➕ `tools/table_cooking/tools/ai/templates/cite_knowledge/question_classifier.xml` (+28 -0) ➕ `tools/table_cooking/tools/ai/templates/cite_knowledge/standard_mode.xml` (+38 -0) ➕ `tools/table_cooking/tools/ai/templates/cite_knowledge/system_prompt_cite_knowledge.xml` (+90 -0) _...and 15 more files_ </details> ### 📄 Description todo - [ ] Replace comments in English - [ ] Delete irrelevant code - [ ] Replace the invoke component compatible with Dify - [ ] Agent Strategy Performance Optimization - [ ] Add necessary documentation - [ ] Add Demo --- <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:22:53 -05:00
yindo closed this issue 2026-02-16 10:22:53 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify-official-plugins#1421