UbiquityOS / AI Gateway
OpenAI-compatible

UbiquityOS AI Gateway

AI.UBQ.FI is an OpenAI-compatible inference gateway for approved UbiquityOS applications and autonomous agents. Discover the current model catalog at runtime, use Chat Completions or Responses, and start from machine-readable API documentation instead of guessing an integration contract.

Developer portal Read the full docs Open the chat playground

Quickstart (curl)

Assumes $UOS_AI_TOKEN is set.

export UOS_AI_TOKEN="..."

curl -sS https://ai.ubq.fi/v1/chat/completions \
  -H "Authorization: Bearer $UOS_AI_TOKEN" \
  -H "Content-Type: application/json" \
  --data '{"messages":[{"role":"system","content":"You are a helpful assistant."},{"role":"user","content":"Tell me a short joke."}]}'

For developers and agents

Use a documented, inspectable integration surface.

Start with the AI.UBQ.FI developer portal, then read the OpenAPI contract and agent instructions. Configure an OpenAI-compatible SDK with https://ai.ubq.fi/v1, supply an approved UOS_AI_TOKEN, and query GET /v1/models before choosing a model. The service supports POST /v1/chat/completions and POST /v1/responses, including streaming and documented function tools.

Use this gateway for inference from approved UbiquityOS workloads. Do not use it to create credentials, administer keys, or access private operational routes. Never place bearer tokens in prompts, browser URLs, source control, or agent transcripts; obtain them through the approved operator workflow.

Public service information

Stable links for discovery, operational context, and policy information.

The public documentation is available without JavaScript. It explains authentication, error envelopes, function tools, streaming, and rate-limit behavior. The interactive chat playground is a browser tool for a token that you already hold; it is not a self-service credential issuer.