Voker logo

Providers

We support the following Python and TypeScript LLM SDKs:

You can get started with changing just a few lines of code:

from openai import OpenAI  
from voker.ai.provider_openai import OpenAI  

client = OpenAI()

client.chat.completions.create(
    voker_agent="customer-support-agent",  # required 
    voker_session="user-session-1",  # required 
    model="gpt-4.1-mini",
    messages=[
        {
            "role": "user",
            "content": "Hello, world!",
        }
    ],
)

Don't see the provider you use? Integrate with the base Python SDK or TypeScript SDK.

Not using Python or TypeScript? See the REST API specification.