[PR #778] [MERGED] [FEAT] PerplexityAI Support #3494

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/778
Author: @shatfield4
Created: 2/22/2024
Status: Merged
Merged: 2/22/2024
Merged by: @timothycarambat

Base: masterHead: 764-feat-perplexityai-support


📝 Commits (6)

  • 868a0aa add LLM support for perplexity
  • 89c0b0d update README & example env
  • 82cfa51 Merge branch 'master' into 764-feat-perplexityai-support
  • 0a71f71 fix ENV keys in example env files
  • e58a8de slight changes for QA of perplexity support
  • 4e7b870 Update Perplexity AI name

📊 Changes

17 files changed (+483 additions, -3 deletions)

View changed files

📝 README.md (+3 -2)
📝 docker/.env.example (+4 -0)
frontend/src/components/LLMSelection/PerplexityOptions/index.jsx (+88 -0)
frontend/src/media/llmprovider/perplexity.png (+0 -0)
📝 frontend/src/pages/GeneralSettings/LLMPreference/index.jsx (+11 -0)
📝 frontend/src/pages/OnboardingFlow/Steps/DataHandling/index.jsx (+9 -0)
📝 frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx (+11 -1)
📝 server/.env.example (+4 -0)
📝 server/models/systemSettings.js (+12 -0)
server/utils/AiProviders/perplexity/index.js (+204 -0)
server/utils/AiProviders/perplexity/models.js (+49 -0)
server/utils/AiProviders/perplexity/scripts/.gitignore (+1 -0)
server/utils/AiProviders/perplexity/scripts/chat_models.txt (+11 -0)
server/utils/AiProviders/perplexity/scripts/parse.mjs (+44 -0)
📝 server/utils/helpers/customModels.js (+18 -0)
📝 server/utils/helpers/index.js (+3 -0)
📝 server/utils/helpers/updateENV.js (+11 -0)

📄 Description

Pull Request Type

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

Relevant Issues

resolves #764

What is in this change?

Describe the changes in this PR that are impactful to the repo.

  • Add support for PerplexityAI as LLM provider

Additional Information

Add any other context about the Pull Request here that was not captured above.

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/778 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 2/22/2024 **Status:** ✅ Merged **Merged:** 2/22/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `764-feat-perplexityai-support` --- ### 📝 Commits (6) - [`868a0aa`](https://github.com/Mintplex-Labs/anything-llm/commit/868a0aa05c57407d06f76681df1f7839d809b426) add LLM support for perplexity - [`89c0b0d`](https://github.com/Mintplex-Labs/anything-llm/commit/89c0b0de2ff6850d57ac070177a4fd6354556c93) update README & example env - [`82cfa51`](https://github.com/Mintplex-Labs/anything-llm/commit/82cfa5133e848e0481e847194ef68e8056bb1640) Merge branch 'master' into 764-feat-perplexityai-support - [`0a71f71`](https://github.com/Mintplex-Labs/anything-llm/commit/0a71f719c3a2bcf6fdc1755886f3c0eaa490c492) fix ENV keys in example env files - [`e58a8de`](https://github.com/Mintplex-Labs/anything-llm/commit/e58a8de5a6ca514347f488077b602faa27d4bd8b) slight changes for QA of perplexity support - [`4e7b870`](https://github.com/Mintplex-Labs/anything-llm/commit/4e7b8702da40fe569ced5eff8736be94ef8d0d5d) Update Perplexity AI name ### 📊 Changes **17 files changed** (+483 additions, -3 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+3 -2) 📝 `docker/.env.example` (+4 -0) ➕ `frontend/src/components/LLMSelection/PerplexityOptions/index.jsx` (+88 -0) ➕ `frontend/src/media/llmprovider/perplexity.png` (+0 -0) 📝 `frontend/src/pages/GeneralSettings/LLMPreference/index.jsx` (+11 -0) 📝 `frontend/src/pages/OnboardingFlow/Steps/DataHandling/index.jsx` (+9 -0) 📝 `frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx` (+11 -1) 📝 `server/.env.example` (+4 -0) 📝 `server/models/systemSettings.js` (+12 -0) ➕ `server/utils/AiProviders/perplexity/index.js` (+204 -0) ➕ `server/utils/AiProviders/perplexity/models.js` (+49 -0) ➕ `server/utils/AiProviders/perplexity/scripts/.gitignore` (+1 -0) ➕ `server/utils/AiProviders/perplexity/scripts/chat_models.txt` (+11 -0) ➕ `server/utils/AiProviders/perplexity/scripts/parse.mjs` (+44 -0) 📝 `server/utils/helpers/customModels.js` (+18 -0) 📝 `server/utils/helpers/index.js` (+3 -0) 📝 `server/utils/helpers/updateENV.js` (+11 -0) </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 #764 ### What is in this change? Describe the changes in this PR that are impactful to the repo. - Add support for PerplexityAI as LLM provider ### 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. --> - [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:33:54 -05:00
yindo closed this issue 2026-02-22 18:33:54 -05:00
yindo changed title from [PR #778] [FEAT] PerplexityAI Support to [PR #778] [MERGED] [FEAT] PerplexityAI Support 2026-06-05 15:13:42 -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#3494