ChatGPT website widget: options, setup, and rollout checks

Stevia Putri
Written by

Stevia Putri

Katelin Teen
Reviewed by

Katelin Teen

Last edited September 9, 2026

Expert Verified
Black-and-white illustration of a person beside folders, a disconnected plug, and the OpenAI logo

What a ChatGPT website widget actually includes

A useful website chat experience has more parts than a model call. It needs a visible interface, a server-side way to keep credentials out of the browser, an answer policy, a source of business information, and a route to human help when the answer should not be automated.

OpenAI provides ChatKit, an embeddable chat interface with features such as widgets and file attachments. For new work, its current documentation directs developers to a custom-server integration. That is different from embedding a GPT from ChatGPT, and it still requires a backend and operational decisions. The older hosted Agent Builder path is transitioning away; do not start a new deployment from an old hosted tutorial.

If you build with OpenAI directly, the API quickstart shows a server-side SDK flow. Keep API keys on the server, not in page JavaScript. You also own conversation state, abuse controls, monitoring, data choices, and integrations. That can fit a product team that already maintains the web application and needs a bespoke experience.

For a public support widget, the right question is less “does it use ChatGPT?” and more “what can it answer, cite, or hand off?” A fluent answer without current product context can still confuse a visitor.

Three ways to add an AI chat bubble

RouteSetupGood fitWhat the owner must check
Custom API buildDeveloper builds the frontend, server, prompts, and operational controls.A product-specific experience or a team with engineering capacity.API-key protection, usage limits, source retrieval, privacy, accessibility, maintenance, and escalation.
Basic no-code widgetAdd vendor configuration and an embed snippet.A small, narrow FAQ use case.Whether answers are business-specific, which sources are supported, branding, handoff, limits, and billing.
Connected support platformConfigure a teammate, approved sources, behavior, and an embedded channel.Support teams that need website answers tied to help content and a clear escalation path.Source audience, permissions, behavior boundaries, channel setup, and real visitor testing.

None of these routes is automatically the “best.” A custom build buys control but assigns engineering work to your team. A simple widget can shorten setup but may not have the source and handoff controls a support operation needs. A connected platform can reduce integration work, but it still needs an owner to decide what belongs in a public channel.

Start with public knowledge, not every document

The first launch scope should be small. Put public help-center material, shipping policy, or product documentation in scope if it is current and meant for visitors. Do not treat an internal wiki, private ticket history, or an authenticated dashboard as public widget content merely because it is useful to employees.

Ask these questions before connecting a source:

  • Who is allowed to read this on the public website?
  • Does it answer the top visitor questions accurately today?
  • Who updates it when policy or product details change?
  • What should the widget do when it cannot answer: say so, collect a request, or direct the person to human support?

That is also why a generic prompt is not a knowledge strategy. A prompt can state tone and boundaries, but it does not turn old or private documents into a safe public answer.

Design the visitor journey around handoff

Website chat has a different job from an internal engineering assistant. A visitor may ask for refund terms, account access, an order detail, a contract exception, or help with something that requires authentication. Decide the response for each category before launch.

For example, a widget can explain the documented returns policy, link to the correct help article, and say when a support specialist needs to review a specific order. Do not promise that it can view an order or change an account unless the configured action and permission actually permit that behavior. A helpful handoff includes the next step, rather than a vague “contact us.”

Also test the page around the chat bubble: mobile layout, keyboard access, the open/close state, consent or privacy notices, and the route from a chat to a support form or channel. Model quality cannot repair an inaccessible or disconnected interface.

Test the website embed separately from the answers

Use a compact test set before launch. Include common pre-sales questions, a question whose answer is in your approved source, a stale or unsupported request, and a request that should reach a human. For each, assess accuracy, source fit, tone, and the next step.

Then load the staging page as a visitor would. Confirm that the bubble opens, branding and welcome text render correctly, the intended teammate responds, and the promised handoff is reachable. Test normal and boundary questions independently. A good answer in a dashboard preview does not verify that the production embed has the same source access or channel permissions.

Budget for the conversation and its upkeep

A custom API widget has model usage costs plus hosting, development, monitoring, and maintenance. A no-code vendor may instead charge by conversation, credits, subscription, or some combination. Check what happens when traffic exceeds the allowance, and whether human handoff or connected sources cost extra. A free embed is not necessarily free support.

The eesel chat-bubble documentation prices a bubble conversation at one regular task, currently $0.40 regardless of the number of messages in that conversation. For example, 250 such conversations would cost $100, before any other billable work. Dashboard chat is free; CLI chat is billed work. Review expected volume and current task pricing before approving automated tests or launch.

Review a website chat-bubble rollout with eesel CLI

eesel's chat bubble is a website channel for its teammate. The Website integration supplies knowledge; the bubble lets visitors talk to the teammate. Those are separate jobs. The eesel CLI operates the same teammate and workspace as the dashboard, so a support owner, script, or coding agent such as Codex, Claude Code, or Cursor can help with setup using Node.js 18.17 or newer.

For a new setup, the documented quickstart reads the chosen website and returns an embed snippet, trigger ID, and hosted chat link:

Bash
npx @eesel/cli init chat-bubble --site https://your-site.com

Replace the example URL with an owner-approved public site. This command creates a setup; it is not a read-only preview. Connecting a chat bubble makes the channel live without a separate automation switch, so use a non-production setup and do not distribute its hosted link or embed until reviewed. Without an existing account, the quickstart creates an anonymous workspace; log in to claim it before relying on it for ongoing work.

For an existing teammate, ask the coding agent to inspect its sources and instructions first. Replace the example agent name with the intended teammate:

Bash
npx @eesel/cli integrations sources --agent "Website support"
npx @eesel/cli instructions --agent "Website support"

The coding agent reads the structured CLI output and flags missing or unsuitable sources for the owner. Suppose visitors need a delivery-policy answer: check that the current public shipping page is indexed, then test a question about delivery times and an account-specific request the public policy cannot answer. The owner approves source and instruction changes; connecting private documents is not an acceptable shortcut.

Once the owner approves paid test cost, a script or coding agent can run separate eesel chat checks against that non-production teammate, with consequential actions disabled or absent. Read the returned answers and cited evidence rather than treating a successful command as a correct answer. A fresh conversation alone does not remove the teammate's permissions.

Next, have the coding agent propose a website-code change using the actual returned snippet, placed before </body> on a staging page. Review it before merging. Set the name, colors, welcome message, and suggested questions in the Chat Bubble settings. Configure the intended handoff to a connected helpdesk, Slack, or email, and specify when the teammate should use it. Test the hosted chat link and staging embed: the right teammate should answer, the policy citation should work, and the handoff should reach its destination. Only then approve the public embed. This connects terminal-led setup to a visitor experience you have actually checked.

Build a website widget visitors can trust with eesel CLI

eesel Website integration listing indexed pages beside a chat answer about the connected site
eesel Website integration listing indexed pages beside a chat answer about the connected site

An embedded chat bubble should give a visitor an answer from approved public knowledge or a clear way to get a person. Try eesel when you want to review those answers and the actual website channel together.

Sources

Frequently asked questions

Is there an official ChatGPT website widget?

OpenAI offers ChatKit for embedding a chat interface, with custom-server integration recommended for new work. That is different from embedding a GPT: GPTs run inside ChatGPT. You can also choose a support platform with its own website chat channel.

What are the main ChatGPT website widget options?

The main paths are a custom API build, a basic no-code widget, or a connected support platform with knowledge sources, behavior settings, and an embed. The right choice depends on the team that will own code, content, and escalation.

Should a website widget have access to internal documents?

Only connect sources that are appropriate for public visitors. Review audience, freshness, and permissions before exposing a source through a website chat channel.

How should I test a ChatGPT website widget?

Use representative visitor questions, including an out-of-scope request and a handoff case. Check sources and the rendered website bubble separately; a terminal or preview result does not prove the live embed works.

Can eesel provide a website chat widget?

Yes. The eesel chat bubble is a website channel for the same teammate used in the dashboard. Connect approved knowledge separately, configure the handoff, and test the actual hosted chat and website embed before rollout.

How can eesel CLI help with a website-widget rollout?

A person, script, or coding agent can use eesel CLI to initialize a new chat bubble or inspect an existing teammate’s sources and instructions. The quickstart returns a snippet and hosted chat link. Setup changes and paid tests need approval, and the owner still checks the real embed and handoff.

Share this article

Stevia Putri

Article by

Stevia Putri

Stevia Putri is a marketing generalist at eesel AI, where she helps turn powerful AI tools into stories that resonate. She’s driven by curiosity, clarity, and the human side of technology.

Related Posts

All posts →
Black-and-white illustration of a person beside folders, a disconnected plug, and the OpenAI logo
Guides

ChatGPT plugins for JetBrains: current AI Assistant options and buying checks

Choose a JetBrains coding assistant by reviewing its activation path, models, code-data handling, and the workflow it needs to support.

Stevia PutriStevia PutriJan 9, 2026
Black OpenAI logo surrounded by eight hand-drawn banknotes with dollar signs on a white background
Guides

ChatGPT for business (2026): capabilities, controls, and rollout choices

A current ChatGPT overview for business teams: capabilities, Business seats, Company Knowledge, workspace agents, and the controls needed before customer work goes live.

Stevia PutriStevia PutriSep 25, 2025
Two illustrated people beside a pie chart, a phone with a dollar sign, a bird, and an AI icon
Guides

ChatGPT Team review (2026): Business seats, shared work, and buying checks

A current review of the plan formerly called ChatGPT Team: Business seats, shared Projects, Company Knowledge, workspace agents, and the checks to run before rollout.

Kenneth PanganKenneth PanganSep 3, 2025
Black-and-white illustration of a hand dropping a coin above a house marked with an e
Guides

ChatGPT voice rollout: Live, Advanced, and desktop tasks explained

Understand the current ChatGPT voice rollout, how Live differs from Advanced and dictation, and how a voice-led Codex task can help review an eesel support workflow.

Kenneth PanganKenneth PanganJan 6, 2026
The 6 best AI chatbot for website tools in 2026
Guides

6 AI chatbots for your website that actually convert (2026)

See how AI chatbots can boost customer engagement, automate support, and grow your business, right from your website.

Kurnia Kharisma Agung SamiadjieKurnia Kharisma Agung SamiadjieAug 4, 2025
Illustration of a presenter pointing to a flip chart
Guides

Amazon Bedrock Claude Code: setup, model access, and limits

How to configure Claude Code through Amazon Bedrock, choose a current inference profile, manage IAM access, and validate the setup.

Kenneth PanganKenneth PanganSep 30, 2025
Stacked-layers icon on a pastel blue and pink background
Guides

Apps in ChatGPT pricing: plans, provider costs, and API budgets

Apps in ChatGPT pricing depends on your ChatGPT plan, the app provider, and whether you are building a separate API workflow.

Stevia PutriStevia PutriOct 8, 2025
OpenAI logo surrounded by illustrated dollar bills
Guides

Apps in ChatGPT reviews: what businesses should check in 2026

A practical review of Apps in ChatGPT: plugin discovery, app connections, permissions, workspace controls, and limits for support work.

Stevia PutriStevia PutriOct 8, 2025
Two people reading beneath Booking.com, Zillow, Canva, and ChatGPT labels
Guides

Apps in ChatGPT: how connections, permissions, and plugins work

A current guide to Apps in ChatGPT: what they can do, how to connect them, the Plugin directory, permissions, and workspace controls.

Stevia PutriStevia PutriOct 6, 2025

Ready to hire your AI teammate?

Set up in minutes. No credit card required.

Get started free