From 5de5ae7d0988c386577131b217009d944dddf8a4 Mon Sep 17 00:00:00 2001 From: Justin Date: Wed, 5 Aug 2026 15:32:04 -0400 Subject: [PATCH] chore: comment out Runpod Assistant chat widget Disables the docs chat widget injection without deleting the script, so it can be re-enabled by uncommenting. --- chat-widget.js | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/chat-widget.js b/chat-widget.js index 12f4ee013..2656946a7 100644 --- a/chat-widget.js +++ b/chat-widget.js @@ -1,11 +1,12 @@ // Runpod Docs Chat Widget -const WIDGET_BASE_URL = "https://runpod-assistant-doc-backend.vercel.app"; - -const script = document.createElement("script"); -script.src = `${WIDGET_BASE_URL}/chat-widget.js`; -script.async = true; -script.setAttribute("data-api-url", `${WIDGET_BASE_URL}/api`); -script.setAttribute("data-title", "Runpod Assistant"); -script.setAttribute("data-greeting", "Hi! How can I help you with Runpod today?"); -script.setAttribute("data-primary-color", "#5D29F0"); -document.head.appendChild(script); +// Temporarily disabled — uncomment to re-enable the Runpod Assistant widget. +// const WIDGET_BASE_URL = "https://runpod-assistant-doc-backend.vercel.app"; +// +// const script = document.createElement("script"); +// script.src = `${WIDGET_BASE_URL}/chat-widget.js`; +// script.async = true; +// script.setAttribute("data-api-url", `${WIDGET_BASE_URL}/api`); +// script.setAttribute("data-title", "Runpod Assistant"); +// script.setAttribute("data-greeting", "Hi! How can I help you with Runpod today?"); +// script.setAttribute("data-primary-color", "#5D29F0"); +// document.head.appendChild(script);