[PR #1234] [MERGED] Bump openai package to latest #3622

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/1234
Author: @timothycarambat
Created: 4/29/2024
Status: Merged
Merged: 4/30/2024
Merged by: @timothycarambat

Base: masterHead: 1227-bump-openai-dep


📝 Commits (5)

📊 Changes

26 files changed (+2323 additions, -2383 deletions)

View changed files

📝 .vscode/settings.json (+2 -1)
📝 collector/package.json (+1 -1)
📝 collector/utils/WhisperProviders/OpenAiWhisper.js (+25 -18)
📝 collector/yarn.lock (+414 -339)
📝 docker/.env.example (+1 -1)
📝 frontend/src/components/LLMSelection/GroqAiOptions/index.jsx (+1 -2)
📝 frontend/src/components/LLMSelection/TogetherAiOptions/index.jsx (+1 -1)
📝 frontend/src/hooks/useGetProvidersModels.js (+0 -1)
📝 server/.env.example (+1 -1)
📝 server/package.json (+1 -2)
📝 server/utils/AiProviders/genericOpenAi/index.js (+38 -43)
📝 server/utils/AiProviders/groq/index.js (+44 -52)
📝 server/utils/AiProviders/huggingface/index.js (+35 -158)
📝 server/utils/AiProviders/lmStudio/index.js (+38 -42)
📝 server/utils/AiProviders/localAi/index.js (+38 -47)
📝 server/utils/AiProviders/mistral/index.js (+37 -42)
📝 server/utils/AiProviders/openAi/index.js (+43 -49)
📝 server/utils/AiProviders/openRouter/index.js (+206 -136)
📝 server/utils/AiProviders/perplexity/index.js (+42 -45)
📝 server/utils/AiProviders/togetherAi/index.js (+36 -143)

...and 6 more files

📄 Description

Tested all except localai

Pull Request Type

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

Relevant Issues

resolves #1227

What is in this change?

Additional Information

Validations:

  • Whisper file upload
  • Generic OpenAI
  • Groq
  • HuggingFace Dedicated
  • LMStudio
  • LocalAI
  • MistralAI
  • OpenAI
  • Perplexity
  • TogetherAI (free and paid models)
  • LocalAI (embeddings)
  • LMStudio (embeddings)
  • OpenAI (embeddings)
  • CustomModels.js all supported

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/1234 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 4/29/2024 **Status:** ✅ Merged **Merged:** 4/30/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `1227-bump-openai-dep` --- ### 📝 Commits (5) - [`54f3846`](https://github.com/Mintplex-Labs/anything-llm/commit/54f3846a88195db6d884295ebaffa2f6b4e298d6) Bump `openai` package to latest - [`9c30889`](https://github.com/Mintplex-Labs/anything-llm/commit/9c308890afb4d47b7540f18ecb00fbde5264978f) bump LocalAI support with latest image - [`465d2c1`](https://github.com/Mintplex-Labs/anything-llm/commit/465d2c1037c02230225cfb2cad98feda8621f5aa) merge with master - [`7d334cc`](https://github.com/Mintplex-Labs/anything-llm/commit/7d334cc0ed739f60c10844b99f6adb4c11070894) add deprecation notice - [`84a75d4`](https://github.com/Mintplex-Labs/anything-llm/commit/84a75d480c90da45251ba82775857160cf8fb4e7) linting ### 📊 Changes **26 files changed** (+2323 additions, -2383 deletions) <details> <summary>View changed files</summary> 📝 `.vscode/settings.json` (+2 -1) 📝 `collector/package.json` (+1 -1) 📝 `collector/utils/WhisperProviders/OpenAiWhisper.js` (+25 -18) 📝 `collector/yarn.lock` (+414 -339) 📝 `docker/.env.example` (+1 -1) 📝 `frontend/src/components/LLMSelection/GroqAiOptions/index.jsx` (+1 -2) 📝 `frontend/src/components/LLMSelection/TogetherAiOptions/index.jsx` (+1 -1) 📝 `frontend/src/hooks/useGetProvidersModels.js` (+0 -1) 📝 `server/.env.example` (+1 -1) 📝 `server/package.json` (+1 -2) 📝 `server/utils/AiProviders/genericOpenAi/index.js` (+38 -43) 📝 `server/utils/AiProviders/groq/index.js` (+44 -52) 📝 `server/utils/AiProviders/huggingface/index.js` (+35 -158) 📝 `server/utils/AiProviders/lmStudio/index.js` (+38 -42) 📝 `server/utils/AiProviders/localAi/index.js` (+38 -47) 📝 `server/utils/AiProviders/mistral/index.js` (+37 -42) 📝 `server/utils/AiProviders/openAi/index.js` (+43 -49) 📝 `server/utils/AiProviders/openRouter/index.js` (+206 -136) 📝 `server/utils/AiProviders/perplexity/index.js` (+42 -45) 📝 `server/utils/AiProviders/togetherAi/index.js` (+36 -143) _...and 6 more files_ </details> ### 📄 Description Tested all except localai ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [ ] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [ ] 💄 style - [x] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #1227 ### What is in this change? <!-- 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. --> Validations: - [x] Whisper file upload - [x] Generic OpenAI - [x] Groq - [x] HuggingFace Dedicated - [x] LMStudio - [x] LocalAI - [x] MistralAI - [x] OpenAI - [x] Perplexity - [x] TogetherAI (free and paid models) - [x] LocalAI (embeddings) - [x] LMStudio (embeddings) - [x] OpenAI (embeddings) - [x] `CustomModels.js` all supported ### 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:09 -05:00
yindo closed this issue 2026-02-22 18:34:09 -05:00
yindo changed title from [PR #1234] Bump `openai` package to latest to [PR #1234] [MERGED] Bump `openai` package to latest 2026-06-05 15:14:23 -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#3622