Replace decommissioned Groq model defaults - #63
Open
umarjaved204 wants to merge 1 commit into
Open
umarjaved204 wants to merge 1 commit into
umarjaved204 wants to merge 1 commit into
Conversation
|
@umarjaved204 is attempting to deploy a commit to the seno-quantum-coder's projects Team on Vercel. A member of the Team first needs to authorize it. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Replace decommissioned Groq model defaults
Problem
Groq has retired
llama-3.3-70b-versatileandllama-3.1-8b-instant. They no longer appear in Groq's/modelslist, and requests to them fail withmodel_not_found.groqService.jsuses both as its default primary and fallback models. Any deployment that switches toASSISTANT_PROVIDER=groqwithout settingGROQ_MODELwould fail on every chat request.Changes
src/modules/chat/services/groqService.js: default models changed toopenai/gpt-oss-120b(primary) andopenai/gpt-oss-20b(fallback).env.example: commented model names updated to matchImpact
ASSISTANT_PROVIDER=polymentor) is not affected. Those requests go to the PolyMentor service.GROQ_MODELis set to a llama model in any deployment, it needs to be updated.Testing
openai/gpt-oss-120bwith a chat request through the PolyMentor service locally, and it returned a correct answergroqService.jsloads without errorsRelated
Companion PR in PolyMentor: [link], which fixes the chat outage itself.