FAQ
Frequently asked questions
Clear answers about wallet credit, usage, subscriptions, and how Tycoon charges for work.
Is OpenAI Swarm production-ready?
No — and OpenAI has been explicit about this. Swarm is published as an experimental, educational library meant to illustrate handoff patterns between agents. It doesn't have durable state, no managed hosting, and OpenAI doesn't guarantee backward compatibility. For learning how multi-agent handoffs work, Swarm is useful. For shipping something customers depend on, pick CrewAI, LangGraph, or a managed product like Tycoon.
What's the difference between CrewAI and LangGraph?
CrewAI models agents as roles with jobs — 'a researcher', 'a writer', 'a critic' — which maps naturally to how humans think about team composition. LangGraph models agent flows as explicit graphs with nodes and edges — better if your work has conditional branches, loops, and retries. Most teams find CrewAI easier to start with for org-shaped problems and switch to LangGraph when they need durable state or complex control flow. They're not mutually exclusive.
Can Tycoon replace building on Swarm or CrewAI?
For teams that want a working AI team for business operations, yes. You skip the framework layer entirely — no orchestrator to write, no role definitions to maintain, no LLM routing to debug. For teams that want novel agent architectures or research-grade customization, no — Tycoon is opinionated about how roles coordinate, and that opinion won't fit every project. The question is: are you trying to build an agent company, or run one? Different answers lead to different tools.
Which framework has the best observability story?
LangChain + LangSmith is the most mature — LangSmith has been shipping production-grade tracing since 2023 and is the default observability tool for serious LangChain deploys. CrewAI integrates with Helicone, Langfuse, and LangSmith for tracing. AutoGen and Magentic-One are research-oriented and rely on whatever you bolt on. OpenAI Swarm has nothing — you build your own logging and tracing from scratch, which is part of why it's not production-ready.
Is there an open-source Tycoon equivalent?
Not exactly, because Tycoon's shape — pre-hired roles, chat-first interface, skills marketplace — is a product choice rather than a framework. The closest open-source pieces are CrewAI for role-based orchestration, Paperclip for governance primitives, and self-hosted n8n or Activepieces for the automation layer. Assembling those into something equivalent to Tycoon takes real engineering time, which is the main reason non-technical founders pick Tycoon over the open-source stack.