[PR #3211] [MERGED] Add new model provider PPIO #4234

Closed
opened 2026-02-22 18:35:25 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/3211
Author: @cnJasonZ
Created: 2/14/2025
Status: Merged
Merged: 2/27/2025
Merged by: @timothycarambat

Base: masterHead: feat/ppio


📝 Commits (8)

  • 3421906 feat: add new model provider PPIO
  • 3f1eac4 fix: fix ppio model fetching
  • 9cf976c fix: code lint
  • 6e09ca4 Merge branch 'master' into feat/ppio
  • 7ee4de3 reorder LLM
  • 4e912d1 Merge branch 'master' into feat/ppio
  • 64a177f Merge branch 'master' into feat/ppio
  • 0ed37d7 Merge branch 'master' into feat/ppio

📊 Changes

26 files changed (+585 additions, -3 deletions)

View changed files

📝 .vscode/settings.json (+1 -0)
📝 README.md (+1 -0)
📝 docker/.env.example (+4 -0)
frontend/src/components/LLMSelection/PPIOLLMOptions/index.jsx (+100 -0)
📝 frontend/src/hooks/useGetProvidersModels.js (+1 -0)
frontend/src/media/llmprovider/ppio.png (+0 -0)
📝 frontend/src/pages/GeneralSettings/LLMPreference/index.jsx (+11 -0)
📝 frontend/src/pages/OnboardingFlow/Steps/DataHandling/index.jsx (+9 -1)
📝 frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx (+11 -0)
📝 frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/index.jsx (+1 -0)
📝 locales/README.fa-IR.md (+1 -0)
📝 locales/README.ja-JP.md (+1 -0)
📝 locales/README.tr-TR.md (+1 -0)
📝 locales/README.zh-CN.md (+1 -0)
📝 server/.env.example (+4 -0)
📝 server/models/systemSettings.js (+4 -0)
📝 server/storage/models/.gitignore (+1 -1)
server/utils/AiProviders/ppio/index.js (+266 -0)
📝 server/utils/agents/aibitat/index.js (+2 -1)
📝 server/utils/agents/aibitat/providers/ai-provider.js (+8 -0)

...and 6 more files

📄 Description

Pull Request Type

  • feat
  • 🐛 fix
  • ♻️ refactor
  • 💄 style
  • 🔨 chore
  • 📝 docs

Relevant Issues

resolves #3210

What is in this change?

Add new model provider PPIO

Developer Validations

  • I ran yarn lint from the root of the repo & committed changes
  • Relevant documentation has been updated
  • I have tested my code functionality
  • Docker build succeeds locally

🔄 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/Mintplex-Labs/anything-llm/pull/3211 **Author:** [@cnJasonZ](https://github.com/cnJasonZ) **Created:** 2/14/2025 **Status:** ✅ Merged **Merged:** 2/27/2025 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `feat/ppio` --- ### 📝 Commits (8) - [`3421906`](https://github.com/Mintplex-Labs/anything-llm/commit/34219061d7a4a6d9c3319453d593481b887a07ce) feat: add new model provider PPIO - [`3f1eac4`](https://github.com/Mintplex-Labs/anything-llm/commit/3f1eac4fd33c8aa5788052d0e468e9f38716c0b9) fix: fix ppio model fetching - [`9cf976c`](https://github.com/Mintplex-Labs/anything-llm/commit/9cf976c84bcc0b0333025e97e1c3ee1f026a5bba) fix: code lint - [`6e09ca4`](https://github.com/Mintplex-Labs/anything-llm/commit/6e09ca47997160600114d4ecc8c3d90b590e15af) Merge branch 'master' into feat/ppio - [`7ee4de3`](https://github.com/Mintplex-Labs/anything-llm/commit/7ee4de3e8a766cda444ae0165ce55d9eba448074) reorder LLM - [`4e912d1`](https://github.com/Mintplex-Labs/anything-llm/commit/4e912d1d9f29991b0337abd911481e1a580e9bbb) Merge branch 'master' into feat/ppio - [`64a177f`](https://github.com/Mintplex-Labs/anything-llm/commit/64a177f904965b14361c8b03b0961eca3838eba4) Merge branch 'master' into feat/ppio - [`0ed37d7`](https://github.com/Mintplex-Labs/anything-llm/commit/0ed37d7f9ecb38efbcbebdbe117e67a4673a6db6) Merge branch 'master' into feat/ppio ### 📊 Changes **26 files changed** (+585 additions, -3 deletions) <details> <summary>View changed files</summary> 📝 `.vscode/settings.json` (+1 -0) 📝 `README.md` (+1 -0) 📝 `docker/.env.example` (+4 -0) ➕ `frontend/src/components/LLMSelection/PPIOLLMOptions/index.jsx` (+100 -0) 📝 `frontend/src/hooks/useGetProvidersModels.js` (+1 -0) ➕ `frontend/src/media/llmprovider/ppio.png` (+0 -0) 📝 `frontend/src/pages/GeneralSettings/LLMPreference/index.jsx` (+11 -0) 📝 `frontend/src/pages/OnboardingFlow/Steps/DataHandling/index.jsx` (+9 -1) 📝 `frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx` (+11 -0) 📝 `frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/index.jsx` (+1 -0) 📝 `locales/README.fa-IR.md` (+1 -0) 📝 `locales/README.ja-JP.md` (+1 -0) 📝 `locales/README.tr-TR.md` (+1 -0) 📝 `locales/README.zh-CN.md` (+1 -0) 📝 `server/.env.example` (+4 -0) 📝 `server/models/systemSettings.js` (+4 -0) 📝 `server/storage/models/.gitignore` (+1 -1) ➕ `server/utils/AiProviders/ppio/index.js` (+266 -0) 📝 `server/utils/agents/aibitat/index.js` (+2 -1) 📝 `server/utils/agents/aibitat/providers/ai-provider.js` (+8 -0) _...and 6 more files_ </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [x] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [ ] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #3210 ### What is in this change? Add new model provider PPIO ### Developer Validations <!-- All of the applicable items should be checked. --> - [x] I ran `yarn lint` from the root of the repo & committed changes - [x] Relevant documentation has been updated - [x] I have tested my code functionality - [x] Docker build succeeds locally --- <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-22 18:35:25 -05:00
yindo closed this issue 2026-02-22 18:35:25 -05:00
yindo changed title from [PR #3211] Add new model provider PPIO to [PR #3211] [MERGED] Add new model provider PPIO 2026-06-05 15:17:31 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#4234