Hello,
this issue is related to the chapter “Construct a Multi-Agent Workflow” (video + code).
When I run this code-- >
from helper import agent_system_prompt
llm = ChatOpenAI(model=“gpt-4o”)
Research agent and node
web_search_agent = create_react_agent(
llm,
tools=[tavily_tool],
prompt=agent_system_prompt(f"“”
You are the Researcher. You can ONLY perform research
by using the provided search tool (tavily_tool).
When you have found the necessary information, end your output.
Do NOT attempt to take further actions.
“”"),
)
I get this error message →
DatabaseError: 250001 (08001): Failed to connect to DB: SFSENORTHAMERICA-DEEPLEARNING_08_2025.snowflakecomputing.com:443. This account has been marked for decommission. If this is an error, please contact your organization administrator or Snowflake support. [8fc66566-cbf6-4926-aa34-148c20fce911]
I cannot complete the Lab.
Thanks.

