Arova
One API. Every model. Zero ceremony.
See MIGRATION.md to switch from LiteLLM. See SECURITY.md for our security model.
Arova is a small, typed Python client for calling major hosted and local language-model providers through one stable interface. It uses native adapters where wire formats differ and one universal OpenAI-compatible adapter for the long tail of endpoints.
Quickstart
pip install arova
export OPENAI_API_KEY=sk-...
from arova import completion
response = completion(
"openai/gpt-5.6-luna",
[{"role": "user", "content": "Explain zero-copy I/O in one paragraph."}],
)
print(response.text, response.cost)
The model prefix selects a provider. A bare model name uses OpenAI by default, and fallback chains can mix providers: fallbacks=["groq/llama-3.3-70b-versatile", "opencompat/local-model"]. For asynchronous applications, use await arova.acompletion(...) or async for event in arova.astream(...).
Provider coverage
Arova includes native adapters for OpenAI, Anthropic, Gemini, Azure OpenAI, Bedrock, Mistral, Cohere, Groq, DeepSeek, and xAI. It also includes arova.opencompat, which can target any OpenAI-compatible endpoint by setting base_url, model, and key. This covers Together AI, Fireworks AI, OpenRouter, Hugging Face Inference Providers, Ollama, vLLM, LM Studio, Perplexity, Cerebras, SambaNova, NVIDIA NIM, DeepInfra, Novita, and deployment-specific endpoints without adding vendor SDKs. The detailed matrix and source notes are in RESEARCH.md.
| Adapter | Provider examples | Wire format |
|---|---|---|
| Native | OpenAI, Anthropic, Gemini, Azure OpenAI, Bedrock, Mistral, Cohere, Groq, DeepSeek, xAI | Provider-specific translation and streaming |
opencompat |
Together, Fireworks, OpenRouter, Ollama, vLLM, LM Studio, Perplexity, Cerebras, SambaNova, self-hosted gateways | /chat/completions |
from arova.providers.opencompat import OpenCompatProvider
from arova.types import ChatRequest, Message
# Manual base_url setup
provider = OpenCompatProvider(
base_url="https://api.together.xyz/v1",
api_key="...",
provider_name="together",
)
# Or use a built-in preset!
from arova.providers import together, openrouter, ollama, vllm, fireworks
provider = together(api_key="...")
Streaming
Streaming yields typed events rather than provider-specific dictionaries. Tool-call arguments may arrive over many deltas and can be reassembled with assemble_tool_calls.
from arova import Arova, TextDelta, Finish
client = Arova()
for event in client.stream("groq/llama-3.3-70b-versatile", [{"role": "user", "content": "Give me three names for a two-faced API."}]):
if isinstance(event, TextDelta):
print(event.text, end="", flush=True)
elif isinstance(event, Finish):
print(f"\nfinished: {event.reason}")
Tool calling and structured output
The same request types work across native adapters and compatible endpoints. Provider quirks are translated at the boundary.
from arova import completion
response = completion(
"anthropic/claude-sonnet-4.0",
[{"role": "user", "content": "What is the weather in Paris?"}],
tools=[{
"name": "get_weather",
"description": "Return current weather for a city.",
"parameters": {
"type": "object",
"properties": {"city": {"type": "string"}},
"required": ["city"],
},
}],
)
for call in response.tool_calls:
print(call.name, call.arguments)
A JSON-schema response can be requested with response_format={"type": "json_schema", "name": "answer", "schema": {...}}. Support depends on the upstream model; Arova preserves the request and normalizes the response when the provider supports it.
Retries, fallbacks, and costs
Arova retries transient transport failures, 408/409/429 responses, and 5xx responses with jittered exponential backoff. A numeric Retry-After header takes precedence. A fallback chain is expressed as model strings, for example fallbacks=["groq/llama-3.3-70b-versatile", "opencompat/local"]. Every non-streaming response includes normalized usage and a deterministic cost estimate from the bundled static price table. Prices are a source-controlled snapshot, not a billing authority; see RESEARCH.md.
Error Handling
If a request completely fails (e.g., invalid API key, network error, or all fallbacks exhausted), Arova handles it depending on the method:
completion/acompletion: Raises anarova.ProviderErrorwhich chains the final underlying exception (e.g.,httpx.HTTPStatusError) so standard tracebacks reveal the exact upstream failure.stream/astream: Yields anErrorEventin the stream containing the failure details, rather than throwing an exception that crashes the active generator.
Caching and Observability
Arova supports pluggable caching and observability hooks without forcing you to install heavy third-party SDKs like Redis or Langfuse.
from arova import Arova
from arova.cache import InMemoryCache
from arova.hooks import ObservabilityHooks
class MyLogger(ObservabilityHooks):
def on_request(self, request, provider_name):
print(f"Sending to {provider_name}")
def on_response(self, request, response):
print(f"Success! Cost: {response.cost}")
def on_error(self, request, error, provider_name):
print(f"Failed: {error}")
client = Arova(
cache=InMemoryCache(max_size=1000),
hooks=MyLogger()
)
CLI
arova --help
arova models
arova cost groq llama-3.3-70b-versatile --input-tokens 1000 --output-tokens 250
arova chat --model openai/gpt-5.6-luna
Benchmarks vs LiteLLM
Arova's SDK overhead is significantly lower than LiteLLM's because it relies on Pydantic's V2 Rust core and avoids massive per-call dictionary mapping, translating directly to the provider.
You can run tests/benchmark.py to test object overhead. Arova aims for <1ms raw framework overhead per call on modern CPUs.
- LiteLLM: Heavy imports, implicit global state, slow dict parsing.
- Arova: ~12ms import time, zero global side-effects, type-safe throughout.
License
Arova is released under the MIT License. See LICENSE.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file arova-0.1.7.tar.gz.
File metadata
- Download URL: arova-0.1.7.tar.gz
- Upload date:
- Size: 29.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.1.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0a6bc9fd28b276bf846704e9dffdab38f63d7f75222a10ca22bb497b0f5e86f
|
|
| MD5 |
f98eee63350597da9a64acbf5eaa72e0
|
|
| BLAKE2b-256 |
70d50be0f35ae61ae460ee91acdd1fb956dcad6a4fb066b716442578448c930b
|
File details
Details for the file arova-0.1.7-py3-none-any.whl.
File metadata
- Download URL: arova-0.1.7-py3-none-any.whl
- Upload date:
- Size: 30.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.1.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc005151894c8bb2e7a29686d866c0f0dacd4db026caa0ff0452e22372717b6c
|
|
| MD5 |
d8e248a5ad0c7ea7ac2a4b1818ff51d1
|
|
| BLAKE2b-256 |
7145a64d43e08cb3847208d2de48014ae8452534a9132cfff85f0dcad8018f0a
|