[PR #489] [CLOSED] Llamacloud branch #1397

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

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify-official-plugins/pull/489
Author: @ForeignKeyCN
Created: 3/18/2025
Status: Closed

Base: mainHead: llamacloud-branch


📝 Commits (10+)

  • e6ba829 AWS Bedrock Knowledge Base Initial Commit
  • c44082b AWS Bedrock Knowledge Base Initial Commit,naming error resolved
  • 4a323a2 AWS Bedrock Knowledge Base Initial Commit,naming error resolved
  • f3adaa3 AWS Bedrock Knowledge Base Initial Commit,naming error resolved
  • 17e918b AWS Bedrock Knowledge Base Initial Commit,naming error resolved
  • 461a7bb fix: name
  • 9e16c3c fix: comments
  • 49e7a5d llamacloud initial commit
  • a5e1d10 llamacloud initial commit
  • cf0cc35 llamacloud initial commit

📊 Changes

66 files changed (+2189 additions, -0 deletions)

View changed files

extensions/aws_bedrock_knowledge_base/.difyignore (+178 -0)
extensions/aws_bedrock_knowledge_base/.gitignore (+171 -0)
extensions/aws_bedrock_knowledge_base/GUIDE.md (+117 -0)
extensions/aws_bedrock_knowledge_base/PRIVACY.md (+41 -0)
extensions/aws_bedrock_knowledge_base/README.md (+36 -0)
extensions/aws_bedrock_knowledge_base/_assets/aws_security_credential.png (+0 -0)
extensions/aws_bedrock_knowledge_base/_assets/copy_endpoint_url.png (+0 -0)
extensions/aws_bedrock_knowledge_base/_assets/icon.svg (+1 -0)
extensions/aws_bedrock_knowledge_base/_assets/knowledge_id.png (+0 -0)
extensions/aws_bedrock_knowledge_base/_assets/paste_endpoint_url.png (+0 -0)
extensions/aws_bedrock_knowledge_base/_assets/retrieval_test.png (+0 -0)
extensions/aws_bedrock_knowledge_base/_assets/setup_endpoint.png (+0 -0)
extensions/aws_bedrock_knowledge_base/endpoints/aws_bedrock_knowledge_base.py (+92 -0)
extensions/aws_bedrock_knowledge_base/endpoints/aws_bedrock_knowledge_base.yaml (+5 -0)
extensions/aws_bedrock_knowledge_base/main.py (+6 -0)
extensions/aws_bedrock_knowledge_base/manifest.yaml (+35 -0)
extensions/aws_bedrock_knowledge_base/provider/aws_bedrock_knowledge_base.yaml (+45 -0)
extensions/aws_bedrock_knowledge_base/requirements.txt (+4 -0)
extensions/llamacloud/.difyignore (+178 -0)
extensions/llamacloud/.gitignore (+172 -0)

...and 46 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-official-plugins/pull/489 **Author:** [@ForeignKeyCN](https://github.com/ForeignKeyCN) **Created:** 3/18/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `llamacloud-branch` --- ### 📝 Commits (10+) - [`e6ba829`](https://github.com/langgenius/dify-official-plugins/commit/e6ba8297ccc0cd6dbc239d576d2917e9153ddeda) AWS Bedrock Knowledge Base Initial Commit - [`c44082b`](https://github.com/langgenius/dify-official-plugins/commit/c44082bf338767a0aa198c8d89c369dcf71b94f1) AWS Bedrock Knowledge Base Initial Commit,naming error resolved - [`4a323a2`](https://github.com/langgenius/dify-official-plugins/commit/4a323a2b1fa9b8afb86dec48caed986925bfc793) AWS Bedrock Knowledge Base Initial Commit,naming error resolved - [`f3adaa3`](https://github.com/langgenius/dify-official-plugins/commit/f3adaa39870f552e58b24e2ea8ad6ae8f6187f2a) AWS Bedrock Knowledge Base Initial Commit,naming error resolved - [`17e918b`](https://github.com/langgenius/dify-official-plugins/commit/17e918bdc6869dafea47be35040c57ebc473f788) AWS Bedrock Knowledge Base Initial Commit,naming error resolved - [`461a7bb`](https://github.com/langgenius/dify-official-plugins/commit/461a7bbdfca467a86fcc35004e91eceb2d90d684) fix: name - [`9e16c3c`](https://github.com/langgenius/dify-official-plugins/commit/9e16c3c8327a8bb3d299d80a6f5c8336fa79e2e5) fix: comments - [`49e7a5d`](https://github.com/langgenius/dify-official-plugins/commit/49e7a5dc96fc1bcda5a2c4537c3a60bfb1c63939) llamacloud initial commit - [`a5e1d10`](https://github.com/langgenius/dify-official-plugins/commit/a5e1d105051323f5126f1c867580e7a02a7d1902) llamacloud initial commit - [`cf0cc35`](https://github.com/langgenius/dify-official-plugins/commit/cf0cc35c253330d9de27af1333d3e4f21d161364) llamacloud initial commit ### 📊 Changes **66 files changed** (+2189 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `extensions/aws_bedrock_knowledge_base/.difyignore` (+178 -0) ➕ `extensions/aws_bedrock_knowledge_base/.gitignore` (+171 -0) ➕ `extensions/aws_bedrock_knowledge_base/GUIDE.md` (+117 -0) ➕ `extensions/aws_bedrock_knowledge_base/PRIVACY.md` (+41 -0) ➕ `extensions/aws_bedrock_knowledge_base/README.md` (+36 -0) ➕ `extensions/aws_bedrock_knowledge_base/_assets/aws_security_credential.png` (+0 -0) ➕ `extensions/aws_bedrock_knowledge_base/_assets/copy_endpoint_url.png` (+0 -0) ➕ `extensions/aws_bedrock_knowledge_base/_assets/icon.svg` (+1 -0) ➕ `extensions/aws_bedrock_knowledge_base/_assets/knowledge_id.png` (+0 -0) ➕ `extensions/aws_bedrock_knowledge_base/_assets/paste_endpoint_url.png` (+0 -0) ➕ `extensions/aws_bedrock_knowledge_base/_assets/retrieval_test.png` (+0 -0) ➕ `extensions/aws_bedrock_knowledge_base/_assets/setup_endpoint.png` (+0 -0) ➕ `extensions/aws_bedrock_knowledge_base/endpoints/aws_bedrock_knowledge_base.py` (+92 -0) ➕ `extensions/aws_bedrock_knowledge_base/endpoints/aws_bedrock_knowledge_base.yaml` (+5 -0) ➕ `extensions/aws_bedrock_knowledge_base/main.py` (+6 -0) ➕ `extensions/aws_bedrock_knowledge_base/manifest.yaml` (+35 -0) ➕ `extensions/aws_bedrock_knowledge_base/provider/aws_bedrock_knowledge_base.yaml` (+45 -0) ➕ `extensions/aws_bedrock_knowledge_base/requirements.txt` (+4 -0) ➕ `extensions/llamacloud/.difyignore` (+178 -0) ➕ `extensions/llamacloud/.gitignore` (+172 -0) _...and 46 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-16 10:22:50 -05:00
yindo closed this issue 2026-02-16 10:22:50 -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#1397