From 33e4e73bdb4c37fa735d2a571f61a0bb617e7e26 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 10 Jun 2026 21:51:57 +0000 Subject: [PATCH] docs: update SambaNova default model to Meta-Llama-3.3-70B-Instruct Updated usage examples to reflect the new default model after SambaNova Cloud removed Llama-4-Maverick-17B-128E-Instruct. Relates to pipecat PR #4687 --- api-reference/server/services/llm/sambanova.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api-reference/server/services/llm/sambanova.mdx b/api-reference/server/services/llm/sambanova.mdx index 8c904303..31bdac46 100644 --- a/api-reference/server/services/llm/sambanova.mdx +++ b/api-reference/server/services/llm/sambanova.mdx @@ -95,7 +95,7 @@ from pipecat.services.sambanova import SambaNovaLLMService llm = SambaNovaLLMService( api_key=os.getenv("SAMBANOVA_API_KEY"), - model="Llama-4-Maverick-17B-128E-Instruct", + model="Meta-Llama-3.3-70B-Instruct", ) ``` @@ -107,7 +107,7 @@ from pipecat.services.sambanova import SambaNovaLLMService llm = SambaNovaLLMService( api_key=os.getenv("SAMBANOVA_API_KEY"), settings=SambaNovaLLMService.Settings( - model="Llama-4-Maverick-17B-128E-Instruct", + model="Meta-Llama-3.3-70B-Instruct", temperature=0.7, top_p=0.9, max_tokens=1024,