From fbdac8d48e09fd4cb496200b0e580d5dabcb7967 Mon Sep 17 00:00:00 2001 From: Sweaterdog Date: Sun, 9 Mar 2025 00:29:06 -0800 Subject: [PATCH] Update prompter.js Fixed a minor error --- src/models/prompter.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/models/prompter.js b/src/models/prompter.js index 43fd9da..dd7231b 100644 --- a/src/models/prompter.js +++ b/src/models/prompter.js @@ -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';