mirror of
https://github.com/kolbytn/mindcraft.git
synced 2025-07-19 06:25:17 +02:00
Update prompter.js
Fixed chat.model typos
This commit is contained in:
parent
fd6ac47f07
commit
73e11ff6bb
1 changed files with 4 additions and 4 deletions
|
@ -131,10 +131,10 @@ export class Prompter {
|
|||
model_profile.api = 'mistral';
|
||||
else if (profile.model.includes("groq/") || profile.model.includes("groqcloud/"))
|
||||
profile.api = 'groq';
|
||||
else if (chat.model.includes('hf:'))
|
||||
chat.api = "glhf";
|
||||
else if (chat.model.includes('hyperbolic:')|| chat.model.includes('hb:'))
|
||||
chat.api = "hyperbolic";
|
||||
else if (profile.model.includes('hf:'))
|
||||
profile.api = "glhf";
|
||||
else if (profile.model.includes('hyperbolic:')|| chat.model.includes('hb:'))
|
||||
profile.api = "hyperbolic";
|
||||
else if (profile.model.includes('novita/'))
|
||||
profile.api = 'novita';
|
||||
else if (profile.model.includes('qwen'))
|
||||
|
|
Loading…
Add table
Reference in a new issue