Skip to content

Commit

Permalink
fix type for gemma of groq
Browse files Browse the repository at this point in the history
Signed-off-by: 4t8dd <wanger.xyz@gmail.com>
  • Loading branch information
4t8dd committed Apr 17, 2024
1 parent 98521a2 commit 3ae7c66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/llm/llms/Groq.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Groq extends OpenAI {
private static modelConversion: { [key: string]: string } = {
"llama2-70b": "llama2-70b-4096",
"mistral-8x7b": "mixtral-8x7b-32768",
gemma: "gemma-7b-it",
"gemma": "gemma-7b-it",
};
protected _convertModelName(model: string): string {
return Groq.modelConversion[model] ?? model;
Expand Down

0 comments on commit 3ae7c66

Please sign in to comment.