From 661f37e36f53f2d728d8e5a9c5f479051fe0cc18 Mon Sep 17 00:00:00 2001 From: polvallverdu Date: Thu, 27 Mar 2025 23:17:40 +0100 Subject: [PATCH 1/3] chore: better cloud model --- packages/api/src/router/chat.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/api/src/router/chat.ts b/packages/api/src/router/chat.ts index eb81dcf..c4bc528 100644 --- a/packages/api/src/router/chat.ts +++ b/packages/api/src/router/chat.ts @@ -76,7 +76,7 @@ class GroqLLM implements LLM { const generation = trace?.generation({ name: "chat.ask", - model: "llama-3.1-8b-instant", + model: "llama-3.3-70b-versatile", input: messages, modelParameters: { temperature, @@ -87,7 +87,7 @@ class GroqLLM implements LLM { const chatCompletion = await this.groq.chat.completions.create({ messages, - model: "llama-3.1-8b-instant", + model: "llama-3.3-70b-versatile", temperature, max_completion_tokens: maxCompletionTokens, top_p: topP, From 3d9178e3566ef27ba947b16aa4f0e880bdac8333 Mon Sep 17 00:00:00 2001 From: polvallverdu Date: Thu, 27 Mar 2025 23:21:28 +0100 Subject: [PATCH 2/3] feat: banner for bashbuddy cloud --- apps/landing/src/components/Header.svelte | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/apps/landing/src/components/Header.svelte b/apps/landing/src/components/Header.svelte index c6d7004..283f585 100644 --- a/apps/landing/src/components/Header.svelte +++ b/apps/landing/src/components/Header.svelte @@ -9,7 +9,8 @@ import { SITE_URLS } from "@bashbuddy/consts"; - const BANNER_STORAGE_KEY = "bashbuddy-qwen-banner-closed"; + // const BANNER_STORAGE_KEY = "bashbuddy-qwen-banner-closed"; + const BANNER_7DAYS_TILL_PRICE_BUMP = "bashbuddy-banner-7days-till-price-bump"; let isMenuOpen = $state(false); let isBannerVisible = $state(false); @@ -68,7 +69,8 @@ // Check if banner was previously closed if (typeof localStorage !== "undefined") { - const isClosed = localStorage.getItem(BANNER_STORAGE_KEY) === "true"; + const isClosed = + localStorage.getItem(BANNER_7DAYS_TILL_PRICE_BUMP) === "true"; if (!isClosed) { isBannerVisible = true; } @@ -89,7 +91,7 @@ isBannerVisible = false; // Save state to localStorage if (typeof localStorage !== "undefined") { - localStorage.setItem(BANNER_STORAGE_KEY, "true"); + localStorage.setItem(BANNER_7DAYS_TILL_PRICE_BUMP, "true"); } } @@ -99,16 +101,17 @@ {#if isBrowserEnv && isBannerVisible}

- We've added Qwen 2.5 models to BashBuddy Local! + LAST CHANCE TO GET BashBuddy Cloud AT $2/MONTH! We're introducing better + AI models and a new agent mode. Read more ➡️

From 8947336caf9ac86002a847c8f37a64ff860521aa Mon Sep 17 00:00:00 2001 From: polvallverdu Date: Fri, 28 Mar 2025 08:45:24 +0100 Subject: [PATCH 3/3] chore: updated copy --- apps/landing/src/components/Header.svelte | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/landing/src/components/Header.svelte b/apps/landing/src/components/Header.svelte index 283f585..b9f50a6 100644 --- a/apps/landing/src/components/Header.svelte +++ b/apps/landing/src/components/Header.svelte @@ -10,7 +10,8 @@ import { SITE_URLS } from "@bashbuddy/consts"; // const BANNER_STORAGE_KEY = "bashbuddy-qwen-banner-closed"; - const BANNER_7DAYS_TILL_PRICE_BUMP = "bashbuddy-banner-7days-till-price-bump"; + const BANNER_STORAGE_KEY = + "bashbuddy-banner-better-cloud-models-and-upcoming-agent-mode"; let isMenuOpen = $state(false); let isBannerVisible = $state(false); @@ -69,8 +70,7 @@ // Check if banner was previously closed if (typeof localStorage !== "undefined") { - const isClosed = - localStorage.getItem(BANNER_7DAYS_TILL_PRICE_BUMP) === "true"; + const isClosed = localStorage.getItem(BANNER_STORAGE_KEY) === "true"; if (!isClosed) { isBannerVisible = true; } @@ -91,7 +91,7 @@ isBannerVisible = false; // Save state to localStorage if (typeof localStorage !== "undefined") { - localStorage.setItem(BANNER_7DAYS_TILL_PRICE_BUMP, "true"); + localStorage.setItem(BANNER_STORAGE_KEY, "true"); } } @@ -106,8 +106,8 @@ >

- LAST CHANCE TO GET BashBuddy Cloud AT $2/MONTH! We're introducing better - AI models and a new agent mode. + We're introducing better AI models on BashBuddy Cloud and upcoming agent + mode.