Claude Agent SDK
Configure the OpenAI-compatible client with the ubc now base URL.
The Claude Agent SDK, OpenAI SDK, and OpenAI Agents SDK all take a custom base URL. Point the client at ubc now and build agents on your free daily budget.
Anywhere you can set an OpenAI client's base URL and key, ubc now drops in:
Configure the OpenAI-compatible client with the ubc now base URL.
Set baseURL + apiKey and call chat.completions as usual.
Use the same client config for agent runs and tool calls.
Verify with Self and mint a key on the API keys page. Store it as an environment variable.
Set the base URL and key on the OpenAI client.
const client = new OpenAI({baseURL: "https://ubcnow.ai/v1",apiKey: process.env.OPENAI_API_KEY, // ubc_sk_…});
Use any model id ubc now serves in your requests.
curl https://ubcnow.ai/v1/models \-H "Authorization: Bearer ubc_sk_…"
No. Point the SDK's OpenAI-compatible client at ubc now's base URL with a ubc_sk_ key; requests are served from your daily budget.
Send the ubc_sk_ key as the apiKey / Authorization Bearer token. Re-mint if revoked.
Use an exact id from https://ubcnow.ai/v1/models.
One client config and your SDK runs on ubc now.