Key Takeaways
- Repository: 187,081 stars, 531 open issues, not archived β actively pushed to as of this review
- AutoGPT Platform (autogpt_platform/, agpt.co): hosted, paid, visual agent builder β Polyform Shield License (source-available, restricts competing commercial use)
- Classic AutoGPT (classic/original_autogpt/): the original autonomous CLI agent β MIT license, still receives security and maintenance commits
- Local models: classic supports any OpenAI-API-compatible server (including Ollama) via OPENAI_API_BASE_URL, plus native Llamafile support via LLAMAFILE_API_BASE
- The Platform's own environment configuration has no Ollama or local-model settings β it is built around hosted model providers
- No affiliate program exists for AutoGPT on this site or anywhere; every link below is a plain, disclosed link
π In One Sentence
AutoGPT is now two products: a paid, hosted AutoGPT Platform (Polyform Shield license) that is where active development happens, and a legacy MIT-licensed classic CLI agent that still runs locally against Ollama through a generic OpenAI-compatible endpoint but receives maintenance updates rather than new features.
π¬ In Plain Terms
The "AutoGPT" most people remember β a command-line agent you point at your own model β still exists and is still free (MIT), but the company behind it now spends its energy on a separate paid product with a visual builder. Read the license and the folder name before you decide which one you are evaluating.
πNote: If a search result, tutorial, or old blog post talks about "AutoGPT" without specifying classic vs. Platform, assume it means the pre-2026 CLI agent β that is classic, and it is the only part of the project that is MIT and self-hostable for free.
What Is AutoGPT in 2026?
AutoGPT (github.com/Significant-Gravitas/AutoGPT) was the project that popularized the idea of an "autonomous agent" in 2023: give an LLM a goal, and let it plan, act, and self-critique in a loop without a human approving every step. In 2026, the same GitHub organization ships something structurally different: a commercial, hosted product called the AutoGPT Platform, with the original autonomous-loop agent kept alive as a secondary, MIT-licensed component.
- AutoGPT Platform (agpt.co / platform.agpt.co): the current flagship product, a hosted and paid visual agent builder
- AutoPilot: a chat-to-agent surface β describe a task in natural language and the Platform assembles an agent for it
- Agents dashboard: manage, monitor, and re-run agents you or the Marketplace have built
- Marketplace: browse and install pre-built agent templates from other users
- Build canvas: a drag-and-drop, node-based editor for building agents visually, similar in spirit to Langflow or Dify's workflow builders
- Self-hosting the Platform is technically possible (docker-compose.platform.yml, an installer/ script, and a single-container/ option exist in the repo), but the README's primary call-to-action is signing up for the hosted product, not self-hosting it
- classic/original_autogpt/: the original CLI-driven autonomous agent, now positioned as a legacy component alongside classic/forge (an agent-building framework), classic/benchmark, and classic/frontend
The MIT / Polyform License Split, Explained
AutoGPT's licensing is not a single answer, and getting it wrong matters if you plan to build on the code commercially. The repository uses two different licenses for two different parts of the codebase.
Is Classic AutoGPT Still Maintained?
Yes, in the sense that matters for security and stability, but not in the sense of new capabilities. The classic/ folder continues to receive commits from the core team β recent examples include a dependency-vulnerability cleanup, an SSRF-hardening fix for outbound request handling, and a version cap applied after a compromised release of a dependency the classic agent relies on. Those are exactly the commits you want to see on code you plan to run: they are defensive, not decorative.
What classic does not get is new feature work. The commits that add new capabilities β new agent-building primitives, marketplace features, new AutoPilot behavior β land in autogpt_platform/. The project's own README, issue labels, and folder structure treat classic as a legacy, secondary track that is kept functional and secure rather than actively extended. That is a meaningfully different situation from "abandoned": commits keep classic running and safe, but the team's product energy is elsewhere.
Repository status
- What it shows:
- Not archived; pushed same day as this review; 531 open issues
classic/ commit pattern
- What it shows:
- Security fixes and dependency caps land regularly; no major new-feature commits
Where new features land
- What it shows:
- autogpt_platform/ β AutoPilot, Marketplace, and Build canvas get the active development
Project framing
- What it shows:
- README and primary CTA promote the hosted Platform; classic is positioned as the legacy CLI track
πNote: We did not run our own test suite against classic AutoGPT for this review β the verdict below is based on documented commit history and issue activity on the classic/ subfolder specifically, not on measured benchmark numbers we generated ourselves. Verify current status against the repository before committing significant time to it.
How to Run Classic AutoGPT Locally with Ollama
Classic AutoGPT does not have a named, first-class "Ollama integration." It has a generic OpenAI-API-compatible client, configured through classic/original_autogpt/.env.template, and Ollama happens to expose an OpenAI-compatible endpoint β so pointing one at the other is a configuration step, not a built-in feature.
- 1Clone github.com/Significant-Gravitas/AutoGPT and open the classic/original_autogpt/ folder β this is the MIT-licensed CLI agent, not the autogpt_platform/ folder.
- 2Install Ollama separately and pull a model capable of following multi-step tool-calling instructions; the site's own local coding-model and tool-calling comparisons are a reasonable starting point for picking one.
- 3Copy .env.template to .env inside classic/original_autogpt/.
- 4Set OPENAI_API_BASE_URL in .env to your Ollama server's OpenAI-compatible endpoint (Ollama exposes this at /v1 on its default port). Ollama does not check the API key value, but the client still requires the OPENAI_API_KEY field to be set to a non-empty placeholder string.
- 5Alternatively, if you are running a Llamafile instead of Ollama, set LLAMAFILE_API_BASE instead β this is a separate, natively supported local-inference path, not routed through the generic OpenAI-compatible setting.
- 6Install classic's Python dependencies per the instructions in classic/original_autogpt/README.md and run the agent from that folder, not from the repository root.
- 7Expect to supervise it closely on the first runs. Because this is the generic OpenAI-compatible mechanism rather than a maintained, tested Ollama integration, model-specific quirks (tool-call formatting, context-length limits) are yours to debug.
Does classic AutoGPT need a specific Ollama version?
The project does not document a pinned, tested Ollama version for classic β because the integration is the generic OPENAI_API_BASE_URL mechanism, compatibility depends on your Ollama version exposing a stable OpenAI-compatible /v1 endpoint, which recent Ollama releases do. Check Ollama's own release notes for API compatibility, not AutoGPT's.
Can I run classic AutoGPT fully offline?
Yes, once OPENAI_API_BASE_URL points at a local Ollama or Llamafile endpoint, classic AutoGPT does not need outbound API calls to a cloud provider. It may still make outbound web requests as part of an agent's task (e.g., browsing tools) unless you disable that capability.
Realistic Expectations for the Planning Loop
Classic AutoGPT's core mechanic β an LLM planning its own next step in a loop, deciding when the task is done, without a human approving each action β is the same architecture that made it famous and the same architecture that has aged the least well against local, often smaller, open-weight models.
- Autonomous, unscoped planning loops ask more of the underlying model than scoped, tool-limited agents do: the model must track long-horizon state, decide when to stop, and self-correct without a human catching drift early
- Smaller local models (the kind most people run comfortably on consumer hardware via Ollama) are more prone to losing the thread over long autonomous runs than large hosted models, simply because planning and self-correction over many steps is a harder capability than single-turn tool use
- This is a comparative, architectural point, not a claim about any specific model or version: an unscoped planning loop is a harder problem for a local model to sustain than a scoped harness where a human approves each step
- Scoped alternatives β Cline + Ollama, Continue.dev's Agent mode, and graph-based orchestrators like LangGraph β constrain the agent to one editor, one file set, or one explicit approval gate per action, which reduces how far a single planning mistake can drift before a human notices
Who Should Use Classic AutoGPT vs. the Platform?
The right choice depends on whether you want a free, self-hosted, hands-on experiment or a paid, managed product.
AutoGPT vs. Alternatives
AutoGPT's two halves compete with different tools: classic AutoGPT competes with other local, scoped agent harnesses; the Platform competes with other hosted or self-hostable visual agent builders.
| Tool | Model | License | Best For | Maintenance |
|---|---|---|---|---|
| AutoGPT (classic) | Local via Ollama (OpenAI-compatible URL) | MIT | Autonomous-loop experiments | Security fixes only |
| AutoGPT Platform | Hosted providers | Polyform Shield | Visual builder + Marketplace | Active |
| Cline + Ollama | Local | Apache 2.0 | Supervised coding agent | Active |
| Continue.dev Agent | Local or cloud | Apache 2.0 | IDE-scoped agent mode | Active |
| LangGraph | Local or cloud | MIT | Custom graph-based agents | Active |
Common Mistakes When Evaluating AutoGPT
Most confusion about AutoGPT in 2026 comes from not knowing which half of the project a claim refers to.
Frequently Asked Questions
Is AutoGPT MIT licensed?
Partly. The classic/ folder (original_autogpt, forge, benchmark, frontend) is MIT licensed. The autogpt_platform/ folder β the current flagship, hosted AutoGPT Platform β is licensed under Polyform Shield, a source-available license, not a permissive open-source one.
Is AutoGPT still maintained?
Yes. The repository is not archived and was pushed to the same day as this review, with 531 open issues. Active feature development is concentrated in autogpt_platform/; the classic/ folder still receives security and maintenance commits but not new features.
Does AutoGPT work with Ollama?
The classic CLI agent does, through its generic OpenAI-API-compatible client β set OPENAI_API_BASE_URL to your Ollama server's /v1 endpoint. This is not a named, purpose-built "Ollama integration," and it is not supported by the current AutoGPT Platform, whose configuration has no local-model settings.
What is the AutoGPT Platform?
The AutoGPT Platform (agpt.co) is the project's current commercial product: a hosted, paid, visual agent builder with a chat-to-agent AutoPilot, an Agents dashboard, a Marketplace of pre-built agents, and a node-based Build canvas. It can technically be self-hosted, but the primary path promoted by the project is the hosted signup.
Is AutoGPT free to use?
Classic AutoGPT (MIT) is free to self-host. The AutoGPT Platform is a paid, hosted product; self-hosting it is possible under the Polyform Shield license, which permits personal or internal use but restricts building a competing commercial offering on top of it.
What is the difference between AutoGPT and the AutoGPT Platform?
AutoGPT (classic) is the original 2023-era autonomous CLI agent β MIT licensed, runs locally, receives maintenance commits. The AutoGPT Platform is a separate, newer, commercial product from the same organization β a hosted visual agent builder under a source-available license, where active development now happens.
Can I still use AutoGPT for free local experimentation?
Yes, via classic/original_autogpt/, which remains MIT licensed and runs against a local Ollama server through the OPENAI_API_BASE_URL setting. Expect a maintenance-mode codebase, not a feature-actively-developed one.
Why did AutoGPT split into two licenses?
The project's commercial focus moved to the hosted AutoGPT Platform. Polyform Shield lets the company keep that code source-available β readable and self-hostable for personal use β while preventing a competitor from taking the code and reselling a rebranded version, something a permissive license like MIT would not have prevented.
Is classic AutoGPT better than Cline or Continue.dev for local agent work?
Not for unattended local automation. Classic AutoGPT's unscoped, autonomous planning loop asks more of the underlying model than scoped, single-editor harnesses like Cline + Ollama or Continue.dev's Agent mode, which limit the blast radius of a planning mistake with per-step approval. Classic AutoGPT is better suited to experimenting with the planning-loop architecture itself than to production coding work.
