Remove hard-coded model overrides from Together and Groq examples

Prefer service defaults — the hard-coded models we were using are no
longer available on these providers.
This commit is contained in:
Paul Kompfner
2026-03-23 15:20:17 -04:00
parent 45926a7135
commit e0c49927cf
4 changed files with 0 additions and 4 deletions

View File

@@ -77,7 +77,6 @@ async def run_bot(transport: BaseTransport, runner_args: RunnerArguments):
groq_llm = GroqLLMService(
api_key=os.getenv("GROQ_API_KEY"),
settings=GroqLLMService.Settings(
model="meta-llama/llama-4-maverick-17b-128e-instruct",
system_instruction="You are a very helpful assistant. Your goal is to demonstrate your capabilities in detail in a creative and helpful way.",
),
)