Point your existing code here
If you already use an OpenAI-style API, the only change is the base URL:
# Same request you already send. Different host.
curl https://api.tokn.supply/v1/chat/completions \
-H "Authorization: Bearer $TOKN_KEY" \
-d '{"model":"meta/llama-3.2-1b-instruct","messages":[{"role":"user","content":"hello"}]}'
The OpenAI SDKs work unchanged: chat with streaming, and embeddings.
GET /v1/models lists what is available to your key.