[PR #2470] [MERGED] Integrate Apipie support directly #3998

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/2470
Author: @timothycarambat
Created: 10/14/2024
Status: Merged
Merged: 10/15/2024
Merged by: @timothycarambat

Base: masterHead: 2464-apipie-support


📝 Commits (2)

  • ceac1da Integrate Apipie support directly
  • 797fb0d update Apipie image provider

📊 Changes

20 files changed (+668 additions, -16 deletions)

View changed files

📝 .vscode/settings.json (+3 -2)
📝 docker/.env.example (+4 -0)
frontend/src/components/LLMSelection/ApiPieOptions/index.jsx (+101 -0)
frontend/src/media/llmprovider/apipie.png (+0 -0)
📝 frontend/src/pages/GeneralSettings/LLMPreference/index.jsx (+23 -13)
📝 frontend/src/pages/OnboardingFlow/Steps/DataHandling/index.jsx (+8 -0)
📝 frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx (+9 -0)
📝 frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/index.jsx (+1 -0)
📝 server/.env.example (+4 -0)
📝 server/models/systemSettings.js (+4 -0)
📝 server/storage/models/.gitignore (+2 -1)
server/utils/AiProviders/apipie/index.js (+336 -0)
📝 server/utils/agents/aibitat/index.js (+2 -0)
📝 server/utils/agents/aibitat/providers/ai-provider.js (+8 -0)
server/utils/agents/aibitat/providers/apipie.js (+116 -0)
📝 server/utils/agents/aibitat/providers/index.js (+2 -0)
📝 server/utils/agents/index.js (+6 -0)
📝 server/utils/helpers/customModels.js (+19 -0)
📝 server/utils/helpers/index.js (+9 -0)
📝 server/utils/helpers/updateENV.js (+11 -0)

📄 Description

Note: Streaming not supported

Pull Request Type

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

Relevant Issues

resolves #2464
resolves #989

What is in this change?

Does not support response streaming

Additional Information

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/2470 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 10/14/2024 **Status:** ✅ Merged **Merged:** 10/15/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `2464-apipie-support` --- ### 📝 Commits (2) - [`ceac1da`](https://github.com/Mintplex-Labs/anything-llm/commit/ceac1da145528e33144b767be37886559d782415) Integrate Apipie support directly - [`797fb0d`](https://github.com/Mintplex-Labs/anything-llm/commit/797fb0db3e42b2da9d6ad70534750746b9bf9209) update Apipie image provider ### 📊 Changes **20 files changed** (+668 additions, -16 deletions) <details> <summary>View changed files</summary> 📝 `.vscode/settings.json` (+3 -2) 📝 `docker/.env.example` (+4 -0) ➕ `frontend/src/components/LLMSelection/ApiPieOptions/index.jsx` (+101 -0) ➕ `frontend/src/media/llmprovider/apipie.png` (+0 -0) 📝 `frontend/src/pages/GeneralSettings/LLMPreference/index.jsx` (+23 -13) 📝 `frontend/src/pages/OnboardingFlow/Steps/DataHandling/index.jsx` (+8 -0) 📝 `frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx` (+9 -0) 📝 `frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/index.jsx` (+1 -0) 📝 `server/.env.example` (+4 -0) 📝 `server/models/systemSettings.js` (+4 -0) 📝 `server/storage/models/.gitignore` (+2 -1) ➕ `server/utils/AiProviders/apipie/index.js` (+336 -0) 📝 `server/utils/agents/aibitat/index.js` (+2 -0) 📝 `server/utils/agents/aibitat/providers/ai-provider.js` (+8 -0) ➕ `server/utils/agents/aibitat/providers/apipie.js` (+116 -0) 📝 `server/utils/agents/aibitat/providers/index.js` (+2 -0) 📝 `server/utils/agents/index.js` (+6 -0) 📝 `server/utils/helpers/customModels.js` (+19 -0) 📝 `server/utils/helpers/index.js` (+9 -0) 📝 `server/utils/helpers/updateENV.js` (+11 -0) </details> ### 📄 Description Note: Streaming not supported ### 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 #2464 resolves #989 ### What is in this change? **Does not support response streaming** <!-- Describe the changes in this PR that are impactful to the repo. --> ### Additional Information <!-- Add any other context about the Pull Request here that was not captured above. --> ### Developer Validations <!-- All of the applicable items should be checked. --> - [ ] 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 --- <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:34:55 -05:00
yindo closed this issue 2026-02-22 18:34:56 -05:00
yindo changed title from [PR #2470] Integrate Apipie support directly to [PR #2470] [MERGED] Integrate Apipie support directly 2026-06-05 15:16:17 -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#3998