[PR #845] [MERGED] Add Llama API as model provider #1583

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

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify-official-plugins/pull/845
Author: @Riandy
Created: 5/1/2025
Status: Merged
Merged: 5/6/2025
Merged by: @crazywoola

Base: mainHead: llama-api


📝 Commits (4)

  • 650b65d Add Llama API as model provider
  • a13b6d4 Add readme and privacy URL
  • e6e8a4b update author to langgenius as required
  • 8bd2a0c Updated requirements.txt

📊 Changes

15 files changed (+838 additions, -0 deletions)

View changed files

models/llama_api/PRIVACY.md (+3 -0)
models/llama_api/README.md (+11 -0)
models/llama_api/_assets/icon.svg (+1 -0)
models/llama_api/_assets/icon_l_en.png (+0 -0)
models/llama_api/_assets/icon_l_en.svg (+1 -0)
models/llama_api/_assets/icon_s_en.svg (+1 -0)
models/llama_api/main.py (+6 -0)
models/llama_api/manifest.yaml (+41 -0)
models/llama_api/models/llm/llama-3.3-8b-instruct.yaml (+37 -0)
models/llama_api/models/llm/llama-4-maverick-17b-128e-instruct-fp8.yaml (+38 -0)
models/llama_api/models/llm/llama-4-scout-17b-16e-instruct-fp8.yaml (+38 -0)
models/llama_api/models/llm/llm.py (+570 -0)
models/llama_api/provider/llama-api.py (+30 -0)
models/llama_api/provider/llama-api.yaml (+58 -0)
models/llama_api/requirements.txt (+3 -0)

📄 Description

Add Llama API as another model provider, since it's now available as a preview https://www.llama.com/products/llama-api/

Screenshot 2025-05-01 at 9 43 26 AM

🔄 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/845 **Author:** [@Riandy](https://github.com/Riandy) **Created:** 5/1/2025 **Status:** ✅ Merged **Merged:** 5/6/2025 **Merged by:** [@crazywoola](https://github.com/crazywoola) **Base:** `main` ← **Head:** `llama-api` --- ### 📝 Commits (4) - [`650b65d`](https://github.com/langgenius/dify-official-plugins/commit/650b65d9ec871a84b19b11311e65735a1696859e) Add Llama API as model provider - [`a13b6d4`](https://github.com/langgenius/dify-official-plugins/commit/a13b6d4aa553b73fed87556f1e1253f36033eff5) Add readme and privacy URL - [`e6e8a4b`](https://github.com/langgenius/dify-official-plugins/commit/e6e8a4bc1cbcd539b1f5ca824283dfb001edcac0) update author to langgenius as required - [`8bd2a0c`](https://github.com/langgenius/dify-official-plugins/commit/8bd2a0c9f9f40c42c1eed35ee9b81ae21db4279e) Updated requirements.txt ### 📊 Changes **15 files changed** (+838 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `models/llama_api/PRIVACY.md` (+3 -0) ➕ `models/llama_api/README.md` (+11 -0) ➕ `models/llama_api/_assets/icon.svg` (+1 -0) ➕ `models/llama_api/_assets/icon_l_en.png` (+0 -0) ➕ `models/llama_api/_assets/icon_l_en.svg` (+1 -0) ➕ `models/llama_api/_assets/icon_s_en.svg` (+1 -0) ➕ `models/llama_api/main.py` (+6 -0) ➕ `models/llama_api/manifest.yaml` (+41 -0) ➕ `models/llama_api/models/llm/llama-3.3-8b-instruct.yaml` (+37 -0) ➕ `models/llama_api/models/llm/llama-4-maverick-17b-128e-instruct-fp8.yaml` (+38 -0) ➕ `models/llama_api/models/llm/llama-4-scout-17b-16e-instruct-fp8.yaml` (+38 -0) ➕ `models/llama_api/models/llm/llm.py` (+570 -0) ➕ `models/llama_api/provider/llama-api.py` (+30 -0) ➕ `models/llama_api/provider/llama-api.yaml` (+58 -0) ➕ `models/llama_api/requirements.txt` (+3 -0) </details> ### 📄 Description Add Llama API as another model provider, since it's now available as a preview https://www.llama.com/products/llama-api/ <img width="1357" alt="Screenshot 2025-05-01 at 9 43 26 AM" src="https://github.com/user-attachments/assets/97c97dfa-d68f-49eb-9a91-526295844ce1" /> --- <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:23:23 -05:00
yindo closed this issue 2026-02-16 10:23:23 -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#1583