mirror of
https://github.com/kolbytn/mindcraft.git
synced 2025-08-09 16:55:34 +02:00
Update prompter.js
Fixed a minor error
This commit is contained in:
parent
7bd9f0bfd2
commit
fbdac8d48e
1 changed files with 2 additions and 2 deletions
|
@ -139,9 +139,9 @@ export class Prompter {
|
|||
model_profile.api = 'mistral';
|
||||
else if (profile.model.includes("groq/") || profile.model.includes("groqcloud/"))
|
||||
profile.api = 'groq';
|
||||
else if (profile.model.includes("glhf/")
|
||||
else if (profile.model.includes("glhf/"))
|
||||
profile.api = 'glhf';
|
||||
else if (profile.model.includes("hyperbolic/")
|
||||
else if (profile.model.includes("hyperbolic/"))
|
||||
profile.api = 'hyperbolic';
|
||||
else if (profile.model.includes('novita/'))
|
||||
profile.api = 'novita';
|
||||
|
|
Loading…
Add table
Reference in a new issue