Skip to main content
OpenAI-compatible API — any OpenAI SDK client works for the base chat and completion request shape by changing base_url and api_key.
Structured-output helpers from OpenAI’s own API, such as response_format, do not map directly onto Axionic’s /v1/chat/completions route today. For JSON-schema-constrained outputs, use an inline policy via extra_body or the dedicated /sampling/generate endpoint as shown in Using Your Model.

Applying Steering at Inference

Add steering vector fields to any request:

Integration Examples

A Python bot that responds to Telegram messages using your trained model.Install dependencies:
Bot code:
Run:

Next Steps