mirror of
https://github.com/langgenius/dify-official-plugins.git
synced 2026-07-21 17:45:23 -04:00
[PR #422] [CLOSED] Adding Google Drive Tools #1355
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/langgenius/dify-official-plugins/pull/422
Author: @yoshiki-0428
Created: 3/10/2025
Status: ❌ Closed
Base:
main← Head:main📝 Commits (10+)
8df8e7eadd google_driveef5add9feat:save google drive credential9a4ed13add google_drive featuref914bf2fix2e02bd0add parent id option for search foldereafd1eaadd file search feature15170abadd create file and folder features73c6ee9update svg59766c4update google drive create file12c1828del📊 Changes
21 files changed (+1584 additions, -0 deletions)
View changed files
➕
tools/google_drive/.difyignore(+178 -0)➕
tools/google_drive/.env.example(+4 -0)➕
tools/google_drive/.gitignore(+171 -0)➕
tools/google_drive/GUIDE.md(+117 -0)➕
tools/google_drive/PRIVACY.md(+53 -0)➕
tools/google_drive/README.md(+146 -0)➕
tools/google_drive/_assets/icon.svg(+8 -0)➕
tools/google_drive/drive_utils.py(+245 -0)➕
tools/google_drive/main.py(+6 -0)➕
tools/google_drive/manifest.yaml(+33 -0)➕
tools/google_drive/provider/google_drive.py(+41 -0)➕
tools/google_drive/provider/google_drive.yaml(+38 -0)➕
tools/google_drive/requirements.txt(+6 -0)➕
tools/google_drive/tools/create_file.py(+141 -0)➕
tools/google_drive/tools/create_file.yaml(+74 -0)➕
tools/google_drive/tools/create_folder.py(+41 -0)➕
tools/google_drive/tools/create_folder.yaml(+44 -0)➕
tools/google_drive/tools/file_search.py(+57 -0)➕
tools/google_drive/tools/file_search.yaml(+70 -0)➕
tools/google_drive/tools/folder_search.py(+54 -0)...and 1 more files
📄 Description
Adding Google Drive Tools
This PR updates the Google Drive tools to make them easier to use and more reliable.
What's Included
File Search Tool
Folder Search Tool
Create File Tool
Create Folder Tool
All tools work the same way as before, just more reliably.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.