Client Integrations
LiteLLM
Use LiteLLM as a single interface on top of Openference.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Use LiteLLM as a single interface on top of Openference.
import litellm
response = litellm.completion(
model="openai/your-model-name", # or the provider prefix you configured
messages=[{"role": "user", "content": "hi"}],
api_base="https://api.openference.com/v1",
api_key="YOUR_API_KEY"
)