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."}]}'