Turning a data question into a usable spreadsheet has been a friction-filled, code-heavy process for years. You either hand-write fragile web scrapers tied to specific site structures or rely on expensive, limited data brokers. TinyFish, a Palo Alto-based web agent infrastructure startup, is attempting to erase that friction with BigSet, an open-source multi-agent system that builds structured, live datasets from a single English sentence.
Launched on June 2, 2026, BigSet is designed to sit between a plain-English data request and the final, clean table. You type something like “YC startups currently hiring engineers, with funding stage, location, and headcount,” and the system returns a downloadable CSV rather than a list of links or a chat reply . The full codebase is on GitHub under AGPL-3.0, and the system can be run self-hosted with Docker
.
BigSet is not a single large language model call. It is a multi-agent system that delegates tasks to specialized sub-agents, with the orchestrator managing the overall workflow.
The documented pipeline works as follows :
The system is built for recurring work. Users can set a refresh cadence—from every 30 minutes to weekly—and the agents will re-run the full research and validation pipeline on schedule, ensuring datasets stay current without manual intervention .
BigSet is released under the AGPL-3.0 license, which is a strong copyleft license . For teams that modify the software and make it available as a network service, the license typically requires that the modified source code is made available to users. This legal framework contrasts with permissive licenses or proprietary SaaS models.
The system is packaged for Docker-based self-hosting . This means the entire pipeline—the browser-based web interactions, the LLM-backed agent reasoning, and the extraction logic—runs on your own infrastructure. For industries with strict compliance requirements, this deployment model avoids the data sovereignty risks of routing sensitive business intelligence queries through a third-party cloud API or platform. The data extraction process, therefore, remains within a controlled environment where you manage access, networking, and logs.
The most direct competitive comparison is with Exa Websets, a product from Exa.ai that also builds structured data collections from the web. While both products aim to turn the web into a queryable database, their technical approaches and market positioning differ .
Hallucination is a critical concern for any system that autonomously builds datasets. Trendshift coverage of BigSet highlights a comparison where both BigSet and a competitor ran the same query and the competitor returned hallucinated data . The exact nature of that competitor is not explicitly named in the source, but the comparison is framed against a well-funded rival.
Exa addresses hallucination head-on through a documented three-step detection workflow that uses its own search capabilities: extracting claims from text, searching for evidence, and verifying claims against the retrieved evidence . Exa’s Websets product also runs agentic workflows on search candidates to verify that they match the user's exact query before adding them to the final set
.
Sources covering BigSet’s launch describe a dedicated verification stage, where sub-agents verify findings against their sources before the table is finalized . The specific architecture of this verification agent—whether it is a single-step check or a more complex multi-pass system—is not fully detailed in the available materials. However, its purpose in the pipeline is clear: to prevent rows without source citations from reaching the exported dataset.
BigSet is not just a new tool; it represents a shift in how data pipelines can be built. For a small team or a busy analyst, compressing what has traditionally been a multi-hour process of writing and debugging scrapers into a 2- to 5-minute natural-language interaction is a significant time-saver .
The AGPL-3.0 license and self-hosted Docker deployment also position BigSet as an answer to growing concerns around data privacy and pipeline lock-in. By running the system locally, companies avoid routing proprietary business data through a third party and gain the freedom to modify the pipeline as their needs change.
TinyFish, which has raised $47 million and counts Google, DoorDash, and Amazon among its customers for its broader infrastructure platform, appears to be using BigSet to drive adoption for its core web agent technology while providing a genuinely useful, free tool to the community .
Studio Global AI
Use this topic as a starting point for a fresh source-backed answer, then compare citations before you share it.
BigSet is an open source multi agent system that converts a plain English sentence into a structured, exportable dataset from the live web, returning a deduplicated CSV or XLSX file that can be refreshed on a schedule.
BigSet is an open source multi agent system that converts a plain English sentence into a structured, exportable dataset from the live web, returning a deduplicated CSV or XLSX file that can be refreshed on a schedule. Unlike a single model call, BigSet uses an orchestrator agent to plan the schema and dispatches sub agents that autonomously research, verify claims against sources, and compile results—compressing hours of data pipel...
Released under the AGPL 3.0 license, BigSet can be self hosted via Docker, which gives teams full control over their data and pipeline sovereignty, rather than routing requests through a proprietary third party API.
| Cloud-based SaaS; enterprise plans available. |
| Pricing | Open-source, so no platform usage fee for self-hosted instances. Users manage their own compute and model API costs. | Websets starts at $49/month for 8,000 credits; enterprise plans are custom. |
| Data Sovereignty | Full control—runs on your own infrastructure. | Data processing occurs on Exa's servers. |