From a63711372a3676724ff06d2f7484fe683f076efc Mon Sep 17 00:00:00 2001 From: NICOLAS PELAEZ Date: Tue, 19 May 2026 23:51:02 -0500 Subject: [PATCH] agents-workshop: swap deprecated claude-3-7-sonnet for gpt-oss-120b MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit databricks-claude-3-7-sonnet was removed from pay-per-token serving, causing the agent_setup notebook to fail with: NotFoundError: 404 Pay-per-token for this model is disabled. Switched to databricks-gpt-oss-120b to match the model used in Part 2 of the workshop (02_agent_eval) — keeps the whole lab on one model. Left databricks-claude-sonnet-4-6 commented as a Claude fallback alongside the existing meta-llama-3-3-70b-instruct fallback. Co-authored-by: Isaac --- agents-workshop/agent_setup/agent.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/agents-workshop/agent_setup/agent.py b/agents-workshop/agent_setup/agent.py index 03574f6..f0f8c36 100644 --- a/agents-workshop/agent_setup/agent.py +++ b/agents-workshop/agent_setup/agent.py @@ -33,7 +33,8 @@ # Define your LLM endpoint and system prompt ############################################ #LLM_ENDPOINT_NAME = "databricks-meta-llama-3-3-70b-instruct" -LLM_ENDPOINT_NAME = "databricks-claude-3-7-sonnet" +#LLM_ENDPOINT_NAME = "databricks-claude-sonnet-4-6" +LLM_ENDPOINT_NAME = "databricks-gpt-oss-120b" llm = ChatDatabricks(endpoint=LLM_ENDPOINT_NAME) system_prompt = "You are a customer success specialist that helps users with product questions as part of a Databricks lab. Use tools to retrieve all information needed and help customers fully understand the products they're asking about. Aim to provide value in every interaction."