[PR #196] [MERGED] plugin: add plugin tools/e2b #1171

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

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify-official-plugins/pull/196
Author: @RockChinQ
Created: 2/10/2025
Status: Merged
Merged: 2/12/2025
Merged by: @RockChinQ

Base: mainHead: plugin/e2b


📝 Commits (4)

  • 3160066 plugin: add plugin tools/e2b
  • 35b2c9f feat: add upload file action
  • ab12e23 chore: remove debugging msgs
  • e52d8f9 chore(e2b): lock requirements versions

📊 Changes

19 files changed (+816 additions, -0 deletions)

View changed files

tools/e2b/.difyignore (+175 -0)
tools/e2b/.env.example (+4 -0)
tools/e2b/.gitignore (+168 -0)
tools/e2b/PRIVACY.md (+3 -0)
tools/e2b/README.md (+16 -0)
tools/e2b/_assets/icon.svg (+6 -0)
tools/e2b/main.py (+6 -0)
tools/e2b/manifest.yaml (+33 -0)
tools/e2b/provider/e2b.py (+19 -0)
tools/e2b/provider/e2b.yaml (+33 -0)
tools/e2b/requirements.txt (+2 -0)
tools/e2b/tools/download_file.py (+33 -0)
tools/e2b/tools/download_file.yaml (+43 -0)
tools/e2b/tools/run_code.py (+31 -0)
tools/e2b/tools/run_code.yaml (+58 -0)
tools/e2b/tools/run_command.py (+32 -0)
tools/e2b/tools/run_command.yaml (+58 -0)
tools/e2b/tools/upload_file.py (+40 -0)
tools/e2b/tools/upload_file.yaml (+56 -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/196 **Author:** [@RockChinQ](https://github.com/RockChinQ) **Created:** 2/10/2025 **Status:** ✅ Merged **Merged:** 2/12/2025 **Merged by:** [@RockChinQ](https://github.com/RockChinQ) **Base:** `main` ← **Head:** `plugin/e2b` --- ### 📝 Commits (4) - [`3160066`](https://github.com/langgenius/dify-official-plugins/commit/3160066391a00c9d60abcd027971d9ce4b44bae4) plugin: add plugin tools/e2b - [`35b2c9f`](https://github.com/langgenius/dify-official-plugins/commit/35b2c9fea8d5dea2869f31094eb6b9fe56bb6664) feat: add upload file action - [`ab12e23`](https://github.com/langgenius/dify-official-plugins/commit/ab12e233703a13d195d8629249dded62da2456c2) chore: remove debugging msgs - [`e52d8f9`](https://github.com/langgenius/dify-official-plugins/commit/e52d8f98cd9e8e99f1fefbfddb0c88b8be6d7ca2) chore(e2b): lock requirements versions ### 📊 Changes **19 files changed** (+816 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `tools/e2b/.difyignore` (+175 -0) ➕ `tools/e2b/.env.example` (+4 -0) ➕ `tools/e2b/.gitignore` (+168 -0) ➕ `tools/e2b/PRIVACY.md` (+3 -0) ➕ `tools/e2b/README.md` (+16 -0) ➕ `tools/e2b/_assets/icon.svg` (+6 -0) ➕ `tools/e2b/main.py` (+6 -0) ➕ `tools/e2b/manifest.yaml` (+33 -0) ➕ `tools/e2b/provider/e2b.py` (+19 -0) ➕ `tools/e2b/provider/e2b.yaml` (+33 -0) ➕ `tools/e2b/requirements.txt` (+2 -0) ➕ `tools/e2b/tools/download_file.py` (+33 -0) ➕ `tools/e2b/tools/download_file.yaml` (+43 -0) ➕ `tools/e2b/tools/run_code.py` (+31 -0) ➕ `tools/e2b/tools/run_code.yaml` (+58 -0) ➕ `tools/e2b/tools/run_command.py` (+32 -0) ➕ `tools/e2b/tools/run_command.yaml` (+58 -0) ➕ `tools/e2b/tools/upload_file.py` (+40 -0) ➕ `tools/e2b/tools/upload_file.yaml` (+56 -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:22:10 -05:00
yindo closed this issue 2026-02-16 10:22:10 -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#1171