AI ServerBase For Product Builders
Ship the next AI productwithout rebuilding the backend.
VisibleBase is a shared AI ServerBase for people who keep shipping AI products. Put models, user tokens, usage, and service routing into one Base, then let new clients connect to it directly.
Client keeps product UX. Your business backend keeps login and billing. Base owns the repeated AI layer in the middle.
QuickstartRun one full call chain
Create a Base, add a model, issue a token, and make UserClient work end to end.
ConceptsUnderstand the product modelSee what belongs in Base, what stays in the product, and why the split matters.
ReferenceLook up Base, UserClient, and AdminClientJump straight to the concrete runtime and client interfaces.
Two Surfaces
Most teams only need these two pieces.
One product-side client and one shared Base are enough to prove the whole call path.
@visiblebase/client
npm i @visiblebase/client
import { UserClient } from "@visiblebase/client";
const client = new UserClient({
base_url: "https://base.example.com",
product_id: "prod_xxx",
user_token: "ub_xxx",
});
const models = await client.models();
const result = await client.text({
model: models.primary(),
prompt: "Write a welcome message for the product",
});