Providers
We support the following Python LLM SDKs:
You can get started with just a single line of code change:
from openai import OpenAI
from voker.ai.provider_openai import OpenAI
client = OpenAI()
client.chat.completions.create(
model="gpt-4.1-mini",
messages=[
{
"role": "user",
"content": "Hello, world!",
}
],
)Don't see the provider you use? Integrate with the base Python SDK.
Not using python? See the REST API specification.