@open_founderi
iAccount based inMalta
About this account
- Account based in
- Malta
- Connected via
- United States App Store
Account-level information from X, not a live location or the device used for a specific post.
Founder @openservai Maximizing agent reliability and cost-efficiency for vertical AI companies, enterprise and regulated industries.
Joined March 2024
- Tweets1.4K
- Following453
- Followers4.1K
- Likes1.5K
Pinned Tweet
We've been pretty quiet about what we're building. That changes now.
Our reasoning framework is currently beating every @OpenAI model on industry standard benchmarks. There are six models in development. SERV-nano just matched GPT-5.4 at 20x lower cost and 3x the speed. The research paper backing it is in peer review at a top-1% AI journal. The UAE government is running it in production, so are 10+ enterprises.
Nothing comes even close.
This goes far beyond any wrapper or prompt engineering gimmick, we've developed an entire AI reasoning layer from scratch: structured, bounded, deterministic using machine readable code instead of vague english prompts.
Any builder or enterprise swaps two lines of code and their agents get much cheaper and much smarter instantly. The self-serve API is about to open, in a multi-phase rollout.
More soon.
Tim retweeted
Excited to be joining the AI Ecosystem on @base and @openservai with my own solo tech studio - Magpie's Shiny Things!
Hell of a fun ecosystem, and bewilderingly excited to build in it!
nitter.cf/ALASKANmagpie/status/2…
AI projects to watch on @base
AI on base is moving beyond chat, with private inference, agent payments, onchain execution, data networks, and AI-managed markets.
■ @AskVenice - Jev is available through its API, alongside Venice’s listing on Circle’s Agent Marketplace.
■ @virtuals_io - Occupy uses AI-managed teams to direct shared tokenized-stock treasuries.
■ @bankrbot - Agent trading with limit, TWAP, stop, trailing-stop, and DCA orders across multiple chains.
■ @DopaMintLabs - Intent-based agents that turn chat, iMessage, or DOPE app requests into onchain and real-world actions.
■ @OpenGradient - Private AI through DreamFort, with local agents, image generation, video tools, and private inference.
■ @KorProtocol - KOR ID crossed 50K mints on Base, while KORUS connects agents to music discovery and licensing.
■ @BlockRunAI - OpenJev provides free deterministic yes/no, classification, and scoring tasks with up to 64 questions per call.
■ @openservai - SERV Reasoning supports Base, Coinbase AgentKit, RWA vaults, and open agent applications.
■ @basemateagent - Cross-border stablecoin routing through text messages, with tokenized Apple stock sent to beta users.
■ @usedotai - Processed 7.71B tokens over two weeks, with weekly volume reaching 3.86B.
■ @hellominds_ - Persistent AI agents with their own memory, identity, and skills.
■ @reppo - Orquestra Lite makes datanet registration, top-ups, and participation easier.
■ @ClawBankHQ - Agent infrastructure built around scoped API keys, risk classes, company records, and verifiable actions.
■ @1clawAI - HSM-backed secrets, key redaction, agent analytics, and audit trails for AI agents.
■ @myrad_hq - Personal AI that learns user preferences, alongside an open datanet with 68M traded volume.
■ @QuotientHQ - Forecasting system with more than $550K in trading volume and support for new forecasting agents.
■ @sibylcap - Open-source agent memory benchmark, with a memory plugin preparing to accept payments.
Which AI or robotics project on Base are you watching?
The most performant and trustworthy agents in crypto are currently being built on SERV.
Agents on
> Robinhood
> Coinbase
> IXS
New builders being onboarded, new products being built, new startups being launched.
The first builder event of many to come, more serving to come.
Replying to @openservai
Build with SERV Reasoning across four tracks:
- Robinhood Mainnet & MCP
- Coinbase AgentKit
- @IXSFinance RWA Vaults
- Open Track
Push SERV across RWAs, tokenized stocks, automated trading, and entirely new agentic use cases.
Learn more about SERV ↓
docs.openserv.ai/what-is-ser…
SERV’s ability to amplify any model is core to our proposition.
Any model, any lab, SERV makes them more capable.
> more performance
> more ROI
Jev is seriously impressive. SERV makes it better.
We put Jev through the same benchmark we use to evaluate leading AI models, testing it both standalone and armed with SERV Reasoning.
Paired with SERV, Jev moves into the top tier of our benchmark, beating Claude Fable 5 at 30x lower cost, with cost similar advantages over GPT-5.5 (~15–20x), Gemini 3.5 Flash (~15x), and Grok 4.3 (~6–7x).
The result is clear: Jev + SERV materially outperformed Jev on its own.
Jev is extremely fast, well designed, and great at decision-making. Instead of relying on open-ended responses, it produces structured decisions with probability scores attached. SERV pushes that performance further, adding a stronger reasoning layer to improve the quality of those decisions for high volume agentic work.
The SERV Reasoning API is live, so any developer can test and deploy SERV Reasoning today in just a couple minutes. Get access at: openserv.ai
The agentic economy won’t scale on better models alone. It needs better reasoning infrastructure that are finetuned to the reliability, auditability, and affordability requirements of enterprise agents. SERV is building that layer.
Tim retweeted
Jev looks like a really natural fit for graph sharding in OpenServ v3.
Graph sharding already lets us intelligently break down and route execution across large agent graphs, but having a decision layer this fast and cheap could make those routing decisions dramatically more efficient — potentially allowing us to make many more intelligent decisions throughout execution without paying the latency and cost of additional LLM calls.
We’re definitely looking at integrating it.
I got access to Jev earlier today (thank you @hackgoofer). I have run ~5,000 requests so far, (which cost me around $2!), across classification, model routing, intent, steering, and many other things.
tl;dr, Jev enables a new intelligent decision-making primitive, separate from deterministic code and LLM calls. This allows a class of decision-making that was neither suited to dumb, unintelligent code, nor to slow, expensive LLMs.
It is super fast and cheap, and I think I will likely end up making a few Jev calls to every LLM call I make in my product. I think probably any company using LLM requests today can probably add a Jev call pre and/or post LLM calls to quite literally make their product much better for free, and have better tool calling behavior in many cases.
I happened to have a personal benchmark for this as I’d been working on a ton of proactivity and classification tasks. I have been using the deepseek flash and more recently gpt 5.6 luna family of models as reasonably smart classifiers with low latency. Think questions like:
- Did this conversation output contradict something they’ve mentioned before?
- Should we send a followup message to this user based on our rules?
- It’s been a few seconds of silence. Should we proactively send a message?
In the past, I’ve been forced to write a bunch of what I call decision chains, mostly because an LLM classification call is very expensive in TIME (avg 4s), and less importantly can cost quite a bit if run on every message.
Imagine a normal chat app. If you added 4s to every response to figure out if the response is good before sending it out, that ends up being pretty bad. So instead, I usually have to write some code that is a crude heuristic that runs quickly and decides whether to run the classifier. Obviously this sucks because you call the classifier many times that you don’t want to, which makes your p95 bad, and you also miss cases with the heuristic, and you also have to manage all of these weird chains.
With Jev, it’s cheap enough, and fast enough (p50 ~150ms, p95 ~350ms in my testing!) that you can easily run it every turn. Heck you can reasonably run it before generation AND post generation, for any application that isn’t realtime voice, and still feel snappy.
But this is just one use case. Think: smarter model routing, better context packing, better responses, better observability for intent/tags/safety, smarter retries and so much more. By simply thinking about the inputs and outcomes you want to enforce, you can use Jev to supercharge most model calls and reduce bad user outcomes. The more “quirks” a model has, the more valuable it ends up being.
It’s a bit weird and unintuitive using Jev. Generally, you want to decrease the # of questions you ask a classifier, or it makes more mistakes. In fact, you might want to ask your questions kind of in a compound way, because the reasoning happens in a shared scratchpad of sorts. Adding questions muddies the scratchpad and makes it take longer.
With Jev, you feel incentivized to go the other way, to formulate your query as a set of independent questions. It doesn’t feel like adding more questions decreases your performance on others.
You can go a bit deeper to improve tool calls. Many model tools are things like turning on settings, or other things. You can easily improve models that are not very good at tool calling with Jev, by simply figuring out when to run them. You can do a pre-LLM call to figure out when to unfurl different tool definitions, in order to make your main LLM run better, you could run a background task with Jev + another LLM to reduce tool and context burden on your main LLM, and free it to be responsive.
I’ve only scratched the surface of my testing but very excited!
Agentic trading needs reliability and auditability
SERV solves this.
Yuge
Replying to @CoinbaseDev
being able to access decision-grade data for any agent is yuge, the next layer is reasoning over it efficiently enough to make better decisions
explore and build with @openservai SERV Reasoning on Coinbase AgentKit track nitter.cf/openservai/status/2099…
AI agents will be disgustingly big.
Web2 needs them. Web3 needs them.
Both paths lead to SERV.
All roads lead to SERV.
SERV Reasoning is being built for an agentic AI market projected to reach nearly $1T by 2030.
As AI agents move from demos to production, banks, fintechs, governments and payment providers will need infrastructure they can trust underneath their agents. SERV is building that layer: reliable, auditable and affordable.
Two paths feed each other:
- web2 and enterprise bring scale, long-term contracts and credibility across banking, payments, legal, accounting and more
- web3 moves fast, testing what structured reasoning can do across DeFi, prediction markets, tokenized assets and agent-to-agent commerce
Both paths lead to SERV.
Depending on where a company is in its agent adoption journey, we meet them at one of three entry points:
1. AI agent assessment to identify where agents can create value
2. Custom agent development for specific workflows and business requirements
3. The SERV Reasoning API and platform, the production infrastructure their own agents run on
Different entry points with the same destination → the infrastructure the agent economy runs on.
The public API is live and the first SERV Hackathon just started.
Build with SERV: openserv.ai
More learning, more improvement, more winning.
Always.
The real test of agent infrastructure begins when developers use it in ways you did not anticipate.
That is why I am excited about the 1st SERV Reasoning Hackathon. For the next two weeks, developers will build agents, workflows and products with SERV Reasoning across four different tracks.
For us, this is an opportunity to see how the infrastructure performs across new ideas, workloads and edge cases. As we work toward Graph Sharding, self-improving intelligence and task-specific models, what developers build and discover will help shape where we go next.
If you are building agentic systems, I would be happy to connect, hear what you are working on and help get you started with SERV.
Tim retweeted
Replying to @ptservlor
$ROUTER was only possible by building through the $SERV eco, and a lot of the opportunities I’ve had came through the @openservai team. They believed in me early on, so I was able to build out my vision around private and sovereign AI.
I believe I have proven that I won’t back down in adversity. I have built through volatility and invested significant amounts of money into the project and a vision I believe in.
I truly believe we are just at the start and that both projects will continue to benefit from supporting each other.
I have so many exciting things I am working on that I can’t wait to share with you. Talk soon. Will probably be on PT’s podcast for the third time soon to share my vision with y’all.
AI
Tim retweeted
The 1st SERV Hackathon is live.
Two weeks to build with SERV Reasoning and get rewarded.
Get hands-on early before SERV v3/v4 brings graph sharding, self-improving intelligence, and task-specific models.
Submissions close Sept 28. Pick your track: openserv.ai/hackathon
SERV is based.
Based builders in Europe to check out:
- @AdamFDF_ building @sportfun
- @mrtdlgc building @rwagmicom
- @DarrenCamas building @ipor_io
- @fekunze building @moneda_com
- @JustAG07 building @bananagun
- @Story91_ building @MySphereAI
- @irishsaffer230 building @wlthxyz
- @altagers building @celebrationhb
- @apex_ether building @Veildotcash
- @sstrenev building @defied_money
- @CryptoFilles building @liminalcash
- @CyphrGM building @vibestarterxyz
- @AkashMVerma1 building @0x4Mica
- @leighcronian building @cybercentry
- @open_founder building @openservai
- @thinktomas building @datablocks_app
Tim retweeted
The AI agents that win will be the ones that reason better.
SERV gives developers the infrastructure to make that happen, without rebuilding their whole stack.
The first SERV Hackathon starts in two days.
Let’s see what you build. Pre-register here: form.typeform.com/to/GyPxGqR…
Everything we’ve done so far was preparation for this.
Today, we open access to production-grade AI reasoning for every team. SERV Reasoning API is now live.
This unlocks next stages: SERV v3→v4.
Make your first API call & check 26/27 milestones: openserv.ai
I don’t think many understand how big the opportunity in front of @openservai is.
Every company is going to operate with teams of AI agents. Those agents will need to reason, coordinate and execute millions of tasks across critical parts of every business.
Today we made the SERV Reasoning API public.
This is the point where we begin to open up everything we have been working towards.
I have always believed that AI will completely change what it means to build and operate a company, and the public API is the first major step to this next era.
V3 and V4 will start showing how much bigger the full vision really is.
Very proud of the team and extremely bullish on what comes next.
SERV.
Everything we’ve done so far was preparation for this.
Today, we open access to production-grade AI reasoning for every team. SERV Reasoning API is now live.
This unlocks next stages: SERV v3→v4.
Make your first API call & check 26/27 milestones: openserv.ai
Tim retweeted
SERV Reasoning Public API is now ready.
All that we’ve built so far, led here. We’re aiming to put the engine at the center of the agentic AI world and make SERV a household name.
This unlocks what comes next: V3, V4, and our own model architectures.
Going live in 3... 2...
From solo devs to institutions, agent builders across the world will SERV.
The preparation phase nears completion, and we're kicking off with a series of Builder events to mark the public API release.
First up: Agentic trading on Coinbase, Robinhood, and IXS RWA stacks 🫡
Everything so far was done in preparation for what's coming: public API, and SERV v3 next.
We're launching a series of Hackathons for all developers. The categories in the first online edition are:
- Robinhood Chain & MCP
- Coinbase AgentKit
- @IXSFinance Vaults
- Open Track
Build an agent, workflow, or product that leverages SERV Reasoning and get rewarded for it. Full details and sign-up coming soon.
Tim retweeted
IXS Vaults is one of four tracks in the first SERV Reasoning hackathon, alongside Robinhood Chain, Coinbase AgentKit, and an open track.
The pitch to builders is simple: SERV handles the reasoning, IXS handles the licensed, yield-bearing RWA vault. You handle the agent in between.
Start sketching.
Everything so far was done in preparation for what's coming: public API, and SERV v3 next.
We're launching a series of Hackathons for all developers. The categories in the first online edition are:
- Robinhood Chain & MCP
- Coinbase AgentKit
- @IXSFinance Vaults
- Open Track
Build an agent, workflow, or product that leverages SERV Reasoning and get rewarded for it. Full details and sign-up coming soon.
Tim retweeted
Everything so far was done in preparation for what's coming: public API, and SERV v3 next.
We're launching a series of Hackathons for all developers. The categories in the first online edition are:
- Robinhood Chain & MCP
- Coinbase AgentKit
- @IXSFinance Vaults
- Open Track
Build an agent, workflow, or product that leverages SERV Reasoning and get rewarded for it. Full details and sign-up coming soon.