Vision material for the project — where TibiOS is headed long-term, beyond the current state of the code.
Material de visión del proyecto — hacia dónde apunta TibiOS a largo plazo, más allá del estado actual del código.
The world today: intelligence is built collectively — ownership stays concentrated.El mundo hoy: la inteligencia se construye colectivamente — la propiedad queda concentrada.The problem: millions contribute compute, data and ideas. A few own the models.El problema: millones aportan cómputo, datos e ideas. Unos pocos son dueños de los modelos.Imagine another model: a world where intelligence is built together and owned by everyone.Imagina otro modelo: un mundo donde la inteligencia se construye juntos y es propiedad de todos.A world of shared intelligence: millions of people, thousands of communities, one shared purpose.Un mundo de inteligencia compartida: millones de personas, miles de comunidades, un propósito compartido.Contribute. Build. Share. — the virtuous cycle that powers collective intelligence.Aporta. Construye. Comparte. — el ciclo virtuoso que impulsa la inteligencia colectiva.A community of owners: we own the value we build together.Una comunidad de propietarios: somos dueños del valor que construimos juntos.
TibiOS breaks the hardware barrier to using and building AI. It's a community of owners
where every machine adds up, contributing value and returns to its members and partners.
Con TibiOS se rompe la barrera del hardware para la utilización y construcción de la IA.
Es una comunidad de propietarios donde cada máquina suma, aportando valor y retorno a sus
miembros o socios.
The best Artificial Intelligence — frontier models — for homes, at zero cost, on basic hardware.
La mejor Inteligencia Artificial —modelos frontier— para los hogares, a costo cero,
con hardware básico.
Today, artificial intelligence is built collectively — millions of people contribute
compute, data and ideas — but ownership of the models stays concentrated in a handful of
companies. TibiOS's vision proposes a different model: a global network where any device
(a TibiBox, a server, an idle GPU) contributes resources to a collective, private
intelligence, with no central servers and no single points of failure.
The cycle that powers that network is simple: contribute compute,
build intelligence out of that shared compute, and return
the value generated to those who contributed — the more you contribute, the more you own
of the ecosystem.
Hoy, la inteligencia artificial se construye de forma colectiva —millones de personas aportan
cómputo, datos e ideas— pero la propiedad de los modelos queda concentrada en unas pocas
compañías. La visión de TibiOS propone otro modelo: una red global donde cualquier dispositivo
(una TibiBox, un servidor, una GPU ociosa) aporta recursos a una inteligencia colectiva,
privada y sin servidores centrales ni puntos únicos de fallo.
El ciclo que sostiene esa red es simple: aportar cómputo, construir
inteligencia a partir de ese cómputo compartido, y devolver el valor generado a
quienes contribuyeron — quien más aporta, más participa de la propiedad del ecosistema.
Watch our vision on YouTube
Escucha nuestra visión en YouTube
What is TibiOS
The conceptual contract is simple: applications describe what should run
(a Workload); the Runtime decides if it's admitted,
where it runs, when resources are committed, and
how it runs and is observed.
The Runtime itself is not a scheduler, nor a storage engine, nor a network stack, nor an
execution engine — it's the composition of all those domains, each owned by
an independent domain, wired once in a Composition Root.
Qué es TibiOS
El contrato conceptual es simple: las aplicaciones describen qué debe ejecutarse
(un Workload); el Runtime decide si se admite, dónde se
ejecuta, cuándo se comprometen los recursos y cómo se ejecuta y se observa.
El Runtime en sí mismo no es un scheduler, ni un motor de storage, ni una pila de red, ni un motor
de ejecución — es la composición de todos esos dominios, cada uno propiedad de un
dominio independiente, cableados una única vez en un Composition Root.
Components
Componentes
tibios-core
Rust
The Runtime itself: the complete architectural model, a Cargo workspace, and the Composition Root that wires domains and Worker adapters.
El Runtime en sí: modelo arquitectónico completo, workspace de Cargo, Composition Root que cablea dominios y adaptadores de Worker.
ai-runtime
Python / Ray
Heavy AI execution Worker — one of the two interchangeable implementations of the Worker Contract.
Worker de ejecución pesada de IA — una de las dos implementaciones intercambiables del Worker Contract.
proto/
Protocol Buffers
The shared, language-neutral gRPC contract between the Runtime and its Workers.
El contrato gRPC compartido, neutral a lenguaje, entre el Runtime y sus Workers.
Everything is a Worker
Todo son Workers
The application never changes. The same contract (Worker) covers CoreML, TensorRT, ONNX, OpenVINO, llama.cpp and more — the Runtime decides which implementation executes each Workload.
La aplicación nunca cambia. El mismo contrato (Worker) cubre CoreML, TensorRT, ONNX, OpenVINO, llama.cpp y más — el Runtime decide qué implementación ejecuta cada Workload.
Architectural principles
Principios arquitectónicos
Architecture before implementation
Arquitectura antes que implementación
Describing a capability doesn't imply implementing it. Cost begins when real behavior exists, not when a possibility is described.
Describir una capacidad no implica implementarla. El costo empieza cuando hay comportamiento real, no cuando hay una posibilidad descrita.
Ownership
Ownership
Every piece of mutable state has exactly one authoritative owner. Coordination between domains always happens through published facts, never shared mutable state.
Todo estado mutable tiene exactamente un dueño autoritativo. La coordinación entre dominios ocurre siempre vía hechos publicados, nunca estado compartido.