29 Commits

Author SHA1 Message Date
Timothy Carambat
0c03a838b4 Remove unused providers (#5793)
* remove HF endpoint support

* Delete DPAIS

* forgot file ref
2026-06-09 14:55:03 -07:00
Asish Kumar
bee224171c feat: add Cerebras as an LLM provider (#5699)
* feat: add Cerebras as an LLM provider

Adds Cerebras (https://www.cerebras.ai) as a first-class LLM provider for
chat and agents. Cerebras exposes an OpenAI-compatible inference API, so the
integration mirrors the existing fast-inference providers (Groq/SambaNova):

- New `CerebrasLLM` provider with streaming, prompt-window limits sourced from
  the shared model map, and dynamic model discovery via the customModels
  helper (`GET /v1/models`).
- New `CerebrasProvider` agent provider with the standard UnTooled fallback and
  optional native OpenAI-compatible tool calling, gated behind the existing
  `PROVIDER_SUPPORTS_NATIVE_TOOL_CALLING` ENV (since tool-calling support
  varies per Cerebras model).
- Wires the provider through getLLMProvider/getLLMProviderClass, agent
  selection, ENV validation/persistence, system settings, and the agent
  sub-task client builder so agent helpers (e.g. web-scraping summarization)
  work for Cerebras.
- Registers `cerebras` in the context-window model map (tracked LiteLLM
  provider + legacy fallback values) for accurate context limits.
- Frontend: API key + model-selection options, onboarding/settings provider
  entries, agent-provider enablement, privacy-policy entry, and provider logo.
- Documents the new `CEREBRAS_API_KEY` / `CEREBRAS_MODEL_PREF` env vars in the
  example env files and adds Cerebras to the supported-provider lists.

resolves #5605

* use proper model fallback
use public endpoint for model fetching

* context window reporting + better chat repsonses + show thinking

* add Cerebrase agent tool calling, capability detection, context windows, and usage reporting

* add safety caching

* stub out images

---------

Co-authored-by: Timothy Carambat <rambat1010@gmail.com>
2026-05-27 11:38:30 -07:00
Daniel Dutra
b5f138fe55 feat: adding MiniMax LLM provider (#5450)
* add MiniMax LLM provider support

* add MiniMax LLM provider to the docs

* fix: add trailing newlines for lint compliance

* add env vars to system settings | make max tokens configurable via ui | pass max tokens into minimax llm provider

* change fallback max tokens value to null to use provider default | pass max tokens into handleFucntionCallStream and chat

* add minimax to getModelTag switch

* pass provider into tooledStream and tooledComplete

* remove max tokens param

* update image

---------

Co-authored-by: angelplusultra <macfittondev@gmail.com>
Co-authored-by: Timothy Carambat <rambat1010@gmail.com>
2026-05-18 13:20:57 -07:00
Timothy Carambat
02ee24baac README updates (#5238)
* README updates

* Update README.md

* Update README.md

* remove unused images

* updates

* copy updates
2026-03-19 12:21:26 -07:00
Timothy Carambat
a6ba5a4034 Lemonade integration (#5077)
* lemonade integration

* lemonade embedder

* log

* load model

* readme updates

* update embedder privacy entry
2026-02-27 11:02:38 -08:00
Timothy Carambat
e4022d331b bump copyright year
resolves #5017
2026-02-18 12:49:15 -08:00
Timothy Carambat
0032c4da22 SambaNova Integration (#4943)
* SambaNova Integration

* lint
2026-01-29 18:48:22 -08:00
Timothy Carambat
ff7cb17e34 Improved DMR support (#4863)
* Improve DMR support
- Autodetect models installed
- Grab all models from hub.docker to show available
- UI to handle render,search, install, and management of models
- Support functionality for chat, stream, and agentic calls

* forgot files

* fix loader circle being too large
fix tooltip width command
adjust location of docker installer open for web platform

* adjust imports
2026-01-14 15:55:26 -08:00
Sean Hatfield
49c29fb968 Z.ai LLM & agent provider (#4573)
* wip zai llm provider

* cleanup + add zai agent provider

* lint

* change how caching works for failed models

---------

Co-authored-by: Timothy Carambat <rambat1010@gmail.com>
2025-11-20 15:57:03 -08:00
TensorNull
5922349bb7 feat: Implement CometAPI integration for chat completions and model m… (#4379)
* feat: Implement CometAPI integration for chat completions and model management

- Added CometApiLLM class for handling chat completions using CometAPI.
- Implemented model synchronization and caching mechanisms.
- Introduced streaming support for chat responses with timeout handling.
- Created CometApiProvider class for agent interactions with CometAPI.
- Enhanced error handling and logging throughout the integration.
- Established a structure for managing function calls and completions.

* linting

---------

Co-authored-by: timothycarambat <rambat1010@gmail.com>
2025-09-16 14:38:49 -07:00
Shixian Sheng
ff9395e79e Updated Chinese locale (#3852)
* Update README.zh-CN.md

* Update common.js

* Update common.js
2025-05-19 11:57:31 -07:00
Timothy Carambat
e1b7f5820c PGvector vector database support (#3788)
* PGVector support for vector db storage

* forgot files

* comments

* dev build

* Add ENV connection and table schema validations for vector table
add .reset call to drop embedding table when changing the AnythingLLM embedder
update instrutions
Add preCheck error reporting in UpdateENV
add timeout to pg connection

* update setup

* update README

* update doc
2025-05-09 12:27:11 -07:00
Shixian Sheng
2812fef01e updated locale (#3796)
* Update README.zh-CN.md

* Update common.js
2025-05-09 12:06:49 -07:00
Shixian Sheng
7a137c119b Update README.zh-CN.md (#3780)
* Update README.zh-CN.md

* Update README.zh-CN.md
2025-05-07 19:31:04 -07:00
Shixian Sheng
b89c75e0d7 Updated README.md and README.zh-CN.md (#3776)
* Update README.zh-CN.md

* Update README.md

* Update README.md

---------

Co-authored-by: Timothy Carambat <rambat1010@gmail.com>
2025-05-07 12:45:15 -07:00
Shixian Sheng
684ddc6453 Updated README.md and README.zh_CN.md (#3775)
* Update README.zh-CN.md

* Update README.zh-CN.md

* Update README.zh-CN.md

* Update README.md
2025-05-07 09:16:47 -07:00
Shixian Sheng
ff6249e812 Update README.zh-CN.md (#3748) 2025-05-01 12:20:34 -07:00
timothycarambat
9fc2cd9c05 fix broken links on locales READMEs
closes #3584
2025-04-03 17:22:30 -07:00
Shixian Sheng
9cc1b26af2 Update README.zh-CN.md (#3527)
* Update README.zh-CN.md

* Update README.ja-JP.md

* Update README.zh-CN.md

* Update README.zh-CN.md

* Update README.ja-JP.md
2025-03-24 22:32:41 -07:00
cnJasonZ
2aeb4c2961 Add new model provider PPIO (#3211)
* feat: add new model provider PPIO

* fix: fix ppio model fetching

* fix: code lint

* reorder LLM
update interface for streaming and chats to use valid keys
linting

---------

Co-authored-by: timothycarambat <rambat1010@gmail.com>
2025-02-27 10:53:00 -08:00
alongLFB
e49ec05a98 Fix: fix text and format issues in Chinese documentation. (#3249)
fix:
docs(zh-CN): fix text and format issues in Chinese documentation

- Remove redundant punctuation and repeated words
- Standardize quotation marks format and remove unnecessary quotes
- Add and complete TTS and STT related translations
2025-02-17 13:53:28 -08:00
Mert Cobanov
cf8c7c28a1 Turkish translations (#3207) 2025-02-14 11:10:50 -08:00
okaeiz
b92d63e776 Farsi (Persian) translations (#2989)
* Initial commit | Farsi (Persian) translations

* Farsi (Persian) translations - Pt. 2

* Farsi (Persian) translations - Pt. 3

* Farsi (Persian) translations - `README.fa-IR.md` file
2025-01-20 09:12:02 -08:00
Timothy Carambat
80565d79e0 2488 novita ai llm integration (#2582)
* feat: add new model provider: Novita AI

* feat: finished novita AI

* fix: code lint

* remove unneeded logging

* add back log for novita stream not self closing

* Clarify ENV vars for LLM/embedder seperation for future
Patch ENV check for workspace/agent provider

---------

Co-authored-by: Jason <ggbbddjm@gmail.com>
Co-authored-by: shatfield4 <seanhatfield5@gmail.com>
2024-11-04 11:34:29 -08:00
Timothy Carambat
a30fa9b2ed 1943 add fireworksai support (#2300)
* Issue #1943: Add support for LLM provider - Fireworks AI

* Update UI selection boxes
Update base AI keys for future embedder support if needed
Add agent capabilites for FireworksAI

* class only return

---------

Co-authored-by: Aaron Van Doren <vandoren96+1@gmail.com>
2024-09-16 12:10:44 -07:00
Timothy Carambat
3198718975 Update references to new domain (#1916) 2024-07-22 11:05:34 -07:00
383494
8f4843ddc8 fix typo(README.zh-CN.md) (#1908) 2024-07-20 10:39:26 -07:00
植心
f6c61d0dd1 Update README.zh-CN.md (#1827) 2024-07-08 09:36:28 -07:00
timothycarambat
5578e567ce move translated READMEs into subfolder 2024-06-06 12:15:45 -07:00