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.

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",
});