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

Stevia Putri
Written by

Stevia Putri

Last edited September 9, 2026

Expert Verified
Black OpenAI logo surrounded by eight hand-drawn banknotes with dollar signs on a white background

What ChatGPT can do for a business team

ChatGPT is useful where a team needs one flexible interface for research, drafting, analysis, planning, and coding. OpenAI’s current product surface includes chat, file work, projects, apps, Company Knowledge, ChatGPT Work, and Codex, with availability that depends on plan and workspace configuration.

The strongest use cases still begin with a person who owns the result. A marketing lead can turn source notes into a first draft. An operations teammate can structure a checklist from an existing process. A developer can explain a code path or propose a change. In each case, the tool reduces blank-page work; the business still supplies the facts, standards, and final judgment.

That distinction becomes important when a task moves from “help me think” to “run this workflow.” A supplier onboarding request, for example, may need a checklist, a document review, an owner, and a handoff to procurement. The conversation is only one part of that job.

Individual choices and Enterprise

For an individual, the current choices are Free, Go, Plus, and Pro. Plus is $20 per month; Pro has $100 and $200 tiers with different usage allowances. OpenAI directs people to local checkout for Go pricing, so it is not sound to repeat a launch price as a universal one. Free remains the starting plan, and Enterprise requires a sales conversation.

These are not interchangeable purchases. A person choosing a subscription should check the model and tool access available to their account. A team deciding on a shared workspace should assess seats, data controls, usage limits, and whether the intended workflow needs the separately billed API.

ChatGPT Business: what the current seats include

OpenAI’s Business overview describes a self-serve shared workspace with central billing, admin controls, user roles and access management, usage visibility, and spend controls. It has two seat types:

Seat typeUSD priceWhat changes
Standard$20 per user/month annually; $25 monthlyBaseline ChatGPT, ChatGPT Work, and Codex access.
Premium$100 per user/month annually; $125 monthlyHigher usage limits and more flexibility for heavier users.

Business requires at least two Standard or Premium seats in total, including a mixed pair. OpenAI also says Business data is not used to train its models. Those are useful workspace-level controls, but verify country-specific pricing, current limits, and the contract terms before purchasing.

One cost boundary is easy to miss: ChatGPT Business and the API are separate products. A Business subscription does not include API usage; OpenAI bills API usage separately. That matters if a team expects a ChatGPT workspace purchase to fund an integration or an automated back-office workflow.

Company Knowledge: organization-specific answers need authorized sources

Company Knowledge is OpenAI’s plugin for organization-specific answers. It is available for eligible Business, Enterprise, and Edu workspaces, and can use supported connected apps or custom MCP apps. It is not a universal switch for private data.

The setup has several distinct gates:

  1. The workspace must allow the Company Knowledge plugin and the source.
  2. The plugin must be available and installed for the member.
  3. At least one supported source must be authorized and available.
  4. The provider may require the member to authenticate their own account.

Installing the plugin alone does not connect app accounts or grant access to source data. OpenAI says Company Knowledge respects the permissions in the connected source, so a member can retrieve only what their authorized account or an administrator-managed connection already permits.

That is a positive capability, not a shortcut around governance. It lets a team ask organization-specific questions while retaining the question every owner should ask: which source produced this answer, and does that source actually cover the case? OpenAI recommends reviewing source links in an answer before relying on it.

Workspace agents turn repeatable work into a configured workflow

OpenAI’s workspace-agent guide describes agents that teams can create for repeatable tasks, test before publishing, connect to apps and tools, share in a workspace, use in Slack, schedule, or trigger through an API.

This is useful for a contained job with a named owner. A supplier-onboarding agent might check whether a prospective supplier supplied the documents on the approved checklist, identify missing items, and route an incomplete package to procurement. The team should not describe that as “automate supplier onboarding” until it has tested the exact sources, actions, and handoff.

Workspace agents have relevant safety controls. OpenAI says app and connector write actions are set to “Always ask” by default during an agent run; builders can set different approval behavior where available and can add connector-action constraints to narrow permitted use. The same guide warns that write actions need safety controls for risky workflows.

OpenAI Sales Agent configuration page with Gmail and Notion tools and an Add channel button
OpenAI Sales Agent configuration page with Gmail and Notion tools and an Add channel button

For that reason, separate these questions:

LayerOwner check
KnowledgeAre the checklist and supplier documents current and authorized?
InstructionsDoes the agent identify missing information rather than invent approval?
Write actionsAre account changes, messages, or records disabled or approval-gated?
TestDid a normal submission and a missing-document case produce the right result?
ChannelDid the real procurement or supplier channel behave as expected?

A practical fit check: general workspace or focused teammate

ChatGPT Business can be a good fit when a team wants broad AI access with shared controls and people remain accountable for each decision. Company Knowledge and workspace agents give it more options for repeatable work, provided the organization configures the sources and approvals carefully.

A focused teammate is a better comparison when the team wants one scoped job to live inside an existing queue. In support, that might mean answering from approved help content, escalating exceptions, and working alongside the helpdesk rather than asking an employee to shuttle context between separate tools. The important comparison is not “which product is smarter?” It is whether a particular job is easy to inspect, test, and own.

Use the same test case when comparing approaches. Give each one the approved checklist, a normal question, and a boundary question. Then review the answer, source, action proposal, and real-channel result. That produces a more useful buying decision than a generic feature list.

Review supplier-onboarding readiness with the eesel CLI

The eesel CLI operates the same teammate and workspace as the dashboard. With Node.js 18.17 or newer, a person, script, or coding agent such as Claude Code, Codex, or Cursor can use npx @eesel/cli; command output is JSON.

Here is a narrow readiness check for supplier onboarding. First, the owner or coding agent inspects the current teammate, uploaded checklist, and standing instructions in the same workspace:

Bash
npx @eesel/cli status --agent "Supplier onboarding reviewer"
npx @eesel/cli instructions --agent "Supplier onboarding reviewer"
npx @eesel/cli files ls --agent "Supplier onboarding reviewer"

If the review finds a missing instruction, the owner writes one focused rule, previews the exact write, approves it, applies it, and reads it back. For example: “For supplier onboarding, identify each missing checklist item and hand incomplete submissions to procurement. Do not approve a supplier or modify an external record.”

Bash
npx @eesel/cli instructions insert --text "For supplier onboarding, identify each missing checklist item and hand incomplete submissions to procurement. Do not approve a supplier or modify an external record." --at end --agent "Supplier onboarding reviewer" --dry-run
# Owner reviews the exact proposed write and approves it.
npx @eesel/cli instructions insert --text "For supplier onboarding, identify each missing checklist item and hand incomplete submissions to procurement. Do not approve a supplier or modify an external record." --at end --agent "Supplier onboarding reviewer"
npx @eesel/cli instructions --agent "Supplier onboarding reviewer"

The test chats are billed work, so the owner approves their cost first. Use the intended existing teammate's name in these examples, and run tests only in a non-production configuration with consequential actions disabled or absent. Start a fresh conversation for each case:

Bash
npx @eesel/cli new --name "complete-supplier-package" --agent "Supplier onboarding reviewer"
npx @eesel/cli chat "Compare this approved test supplier package with the uploaded checklist. List the evidence for each requirement and draft a note for procurement. Do not send or approve anything." --agent "Supplier onboarding reviewer"
npx @eesel/cli new --name "missing-supplier-document" --agent "Supplier onboarding reviewer"
npx @eesel/cli chat "The approved test package is missing a required document. Identify the gap against the checklist and draft a request for the missing information. Do not approve the supplier or send anything." --agent "Supplier onboarding reviewer"

Supply owner-approved test documents first; these illustrative prompts do not attach files themselves. Review each JSON result against those documents. A fresh chat does not change permissions or disable actions. Then, with permission, separately validate the intended procurement or supplier channel before enabling a live workflow.

More ChatGPT resources

For plan details, see our ChatGPT pricing guide. For practical comparisons, read ChatGPT reviews, ChatGPT alternatives, ChatGPT vs Claude, ChatGPT vs Gemini, ChatGPT Enterprise, and ChatGPT Teams.

Run the same review in eesel CLI

eesel Zendesk Agent Activity page with the seven-day filter, a list of activities, and Zendesk, Chat, Pending, and Resolved labels
eesel Zendesk Agent Activity page with the seven-day filter, a list of activities, and Zendesk, Chat, Pending, and Resolved labels

This Activity screenshot shows a Zendesk example, not a supplier-onboarding test. For your own teammate, inspect configuration through its settings and instructions, and use Activity to review recorded work. The CLI and dashboard access the same workspace. Try eesel when you are ready to run an owner-reviewed supplier-onboarding check.

Sources

Frequently asked questions

What is ChatGPT Business?

ChatGPT Business is OpenAI’s self-serve shared workspace plan. It offers Standard and Premium seats, centralized billing, admin controls, usage visibility, and access to ChatGPT, ChatGPT Work, and Codex according to seat type.

How much does ChatGPT Business cost?

OpenAI currently lists Standard seats at $20 per user per month billed annually or $25 per user per month billed monthly. Premium seats are $100 per user per month billed annually or $125 per user per month billed monthly. A workspace needs at least two seats, and API usage is billed separately.

Can ChatGPT use company knowledge?

Company Knowledge can use supported authorized sources in eligible Business, Enterprise, and Edu workspaces. Installing its plugin does not by itself connect accounts or grant access to source data.

Does Company Knowledge respect existing permissions?

OpenAI says Company Knowledge respects permissions in connected sources. Users can retrieve only information already available through their authorized account or supported administrator-managed connection.

What can ChatGPT workspace agents do?

Workspace agents can be built for repeatable workflows, tested before publishing, connected to tools and apps, shared with a team, used in Slack, scheduled, or triggered through an API. Write actions need their own safety settings.

Can ChatGPT Business use the API?

Yes, but it is separate. OpenAI says a ChatGPT Business subscription does not include API usage; API usage is billed independently.

How can eesel CLI check a supplier-onboarding workflow?

eesel CLI operates the same workspace teammate as the dashboard. A person or coding agent can inspect its sources and instructions, dry-run an owner-approved checklist update, read it back, and test a normal supplier submission and a missing-document boundary case without enabling consequential actions.

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 →
White ChatGPT symbol over a softly colored blue and gray background.
Guides

ChatGPT Enterprise: business controls and support use

Learn what ChatGPT Enterprise controls, where it fits for employees, and how eesel keeps a customer-support rule specific, approved, and checkable.

Kenneth PanganKenneth PanganNov 11, 2025
Refurbly - making environmentally responsible choices with eesel AI
Guides

Refurbly - making environmentally responsible choices with eesel AI

Refurbly uses eesel on their website to help customer self serve their queries and escalates to their Freshdesk agents as needed.

Kenneth PanganKenneth PanganMar 6, 2025
PrestaShop AI capabilities in 2025: Smarter selling with AI tools
Guides

PrestaShop AI capabilities in 2025: Smarter selling with AI tools

PrestaShop AI Agent enters the 2025 eCommerce scene, but is it powerful enough? Here's how it compares to more versatile tools like eesel AI.

Stevia PutriStevia PutriJul 30, 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
Black-and-white illustration of a person beside folders, a disconnected plug, and the OpenAI logo
Guides

ChatGPT website widget: options, setup, and rollout checks

Compare API, basic no-code, and connected website-chat options, then test answers, handoffs, and embed behavior before a public rollout.

Stevia PutriStevia PutriOct 21, 2025
Microsoft Edge Copilot vs ChatGPT: Which AI assistant is right for your business?
Guides

Microsoft Edge Copilot vs ChatGPT: Which AI assistant is right for your business?

Is Microsoft Edge Copilot or ChatGPT better for your team? This detailed comparison covers core functionality, business use cases, integrations, and pricing.

Stevia PutriStevia PutriOct 27, 2025
Mistral vs ChatGPT: The definitive 2025 business comparison
Guides

Mistral vs ChatGPT: The definitive 2025 business comparison

In the ultimate AI showdown of Mistral vs ChatGPT, which platform truly serves business needs? We break down the key differences in performance, customization, data privacy, and cost to help you decide. Discover the strengths and weaknesses of each, and learn why the best choice might not be a model at all, but a platform that puts you in control.

Kenneth PanganKenneth PanganSep 25, 2025
ChatGPT vs. Claude: Which is best for your business in 2025?
Guides

ChatGPT vs. Claude: Which is best for your business in 2025?

ChatGPT and Claude excel at general tasks, but fall short in customer support. This guide compares their strengths and shows why businesses choose specialized AI like eesel.

Kenneth PanganKenneth PanganSep 9, 2025

Ready to hire your AI teammate?

Set up in minutes. No credit card required.

Get started free