[PR #31] [MERGED] Plugin: agent strategy plugin #1008

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

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify-official-plugins/pull/31
Author: @Nov1c444
Created: 1/7/2025
Status: Merged
Merged: 1/8/2025
Merged by: @RockChinQ

Base: mainHead: plugins/agent


📝 Commits (4)

  • 88b9f29 add agent strategy plugin
  • 967ba30 fix: change the agent fold name
  • ad11006 fix: change the agent fold name
  • 71cdf78 fix: add .env.example

📊 Changes

13 files changed (+1556 additions, -0 deletions)

View changed files

agent-strategies/cot_agent/.env.example (+4 -0)
agent-strategies/cot_agent/_assets/icon.svg (+6 -0)
agent-strategies/cot_agent/main.py (+10 -0)
agent-strategies/cot_agent/manifest.yaml (+33 -0)
agent-strategies/cot_agent/output_parser/cot_output_parser.py (+208 -0)
agent-strategies/cot_agent/prompt/template.py (+106 -0)
agent-strategies/cot_agent/provider/agent.py (+5 -0)
agent-strategies/cot_agent/provider/agent.yaml (+18 -0)
agent-strategies/cot_agent/requirements.txt (+1 -0)
agent-strategies/cot_agent/strategies/ReAct.py (+564 -0)
agent-strategies/cot_agent/strategies/ReAct.yaml (+53 -0)
agent-strategies/cot_agent/strategies/function_calling.py (+493 -0)
agent-strategies/cot_agent/strategies/function_calling.yaml (+55 -0)

📄 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-official-plugins/pull/31 **Author:** [@Nov1c444](https://github.com/Nov1c444) **Created:** 1/7/2025 **Status:** ✅ Merged **Merged:** 1/8/2025 **Merged by:** [@RockChinQ](https://github.com/RockChinQ) **Base:** `main` ← **Head:** `plugins/agent` --- ### 📝 Commits (4) - [`88b9f29`](https://github.com/langgenius/dify-official-plugins/commit/88b9f29b816f71372eb8d337abe37496faa450ac) add agent strategy plugin - [`967ba30`](https://github.com/langgenius/dify-official-plugins/commit/967ba30f467c37155ea4425ba6d5abd5d822e790) fix: change the agent fold name - [`ad11006`](https://github.com/langgenius/dify-official-plugins/commit/ad1100683c41e2d2caa85f93b0d0432729dd2467) fix: change the agent fold name - [`71cdf78`](https://github.com/langgenius/dify-official-plugins/commit/71cdf78df7cfd11d641a4e40a80e76dbc62bf26f) fix: add .env.example ### 📊 Changes **13 files changed** (+1556 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `agent-strategies/cot_agent/.env.example` (+4 -0) ➕ `agent-strategies/cot_agent/_assets/icon.svg` (+6 -0) ➕ `agent-strategies/cot_agent/main.py` (+10 -0) ➕ `agent-strategies/cot_agent/manifest.yaml` (+33 -0) ➕ `agent-strategies/cot_agent/output_parser/cot_output_parser.py` (+208 -0) ➕ `agent-strategies/cot_agent/prompt/template.py` (+106 -0) ➕ `agent-strategies/cot_agent/provider/agent.py` (+5 -0) ➕ `agent-strategies/cot_agent/provider/agent.yaml` (+18 -0) ➕ `agent-strategies/cot_agent/requirements.txt` (+1 -0) ➕ `agent-strategies/cot_agent/strategies/ReAct.py` (+564 -0) ➕ `agent-strategies/cot_agent/strategies/ReAct.yaml` (+53 -0) ➕ `agent-strategies/cot_agent/strategies/function_calling.py` (+493 -0) ➕ `agent-strategies/cot_agent/strategies/function_calling.yaml` (+55 -0) </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:21:39 -05:00
yindo closed this issue 2026-02-16 10:21:40 -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#1008