llama-index llms ovhcloud integration
Project description
LlamaIndex Llms Integration: OVHcloud AI Endpoints
This integration allows you to use OVHcloud AI Endpoints with LlamaIndex. OVHcloud AI Endpoints provides OpenAI-compatible API endpoints for various models.
OVHcloud is a global player and the leading European cloud provider operating over 450,000 servers within 40 data centers across 4 continents to reach 1.6 million customers in over 140 countries. Our product AI Endpoints offers access to various models with sovereignty, data privacy and GDPR compliance.
Installation
Install the required packages:
pip install llama-index llama-index-llms-ovhcloud
API Key
OVHcloud AI Endpoints can be used in two ways:
-
Free tier (with rate limits): You can use the API without an API key or with an empty string API key. This provides free access with rate limits.
-
With API key: For higher rate limits and production use, generate an API key from the OVHcloud manager:
- Go to https://ovh.com/manager
- Navigate to Public Cloud section
- Go to AI & Machine Learning → AI Endpoints
- Create an API key
Usage
Basic Usage
To use OVHcloud AI Endpoints with LlamaIndex, first initialize the LLM:
from llama_index.llms.ovhcloud import OVHcloud
# Using with API key
llm = OVHcloud(
model="gpt-oss-120b",
api_key="YOUR_API_KEY", # Or empty string for free tier with rate limits)
)
You can find available models in the OVHcloud AI Endpoints catalog.
Basic Completion
Generate a simple completion:
response = llm.complete("The capital of France is")
print(response.text)
Chat Messages
Use chat-style interactions:
from llama_index.core.llms import ChatMessage
messages = [
ChatMessage(role="system", content="You are a helpful assistant"),
ChatMessage(role="user", content="What is the capital of France?"),
]
response = llm.chat(messages)
print(response)
Streaming
Stream completions in real-time:
# Streaming completion
response = llm.stream_complete("The capital of France is")
for r in response:
print(r.delta, end="")
# Streaming chat
messages = [
ChatMessage(role="system", content="You are a helpful assistant"),
ChatMessage(role="user", content="What is the capital of France?"),
]
response = llm.stream_chat(messages)
for r in response:
print(r.delta, end="")
Get Available Models
You can dynamically fetch available models:
llm = OVHcloud(model="gpt-oss-120b")
available = llm.available_models # List[Model] - fetched dynamically
model_ids = [model.id for model in available]
print(f"Available models: {model_ids}")
Additional Resources
For more information about OVHcloud AI Endpoints, visit:
Project details
Release history Release notifications | RSS feed
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 llama_index_llms_ovhcloud-0.2.1.tar.gz.
File metadata
- Download URL: llama_index_llms_ovhcloud-0.2.1.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e991fde68db7105e4a44d3a21fb4973e53fd76174ce19ac8c1b7d81425edc0f
|
|
| MD5 |
47f32af088bf4e3c2059c59829df719c
|
|
| BLAKE2b-256 |
142c4d2e75cfbf70ed22326a3040462dc6cc196e8e0246fcb5129a48af5b9366
|
File details
Details for the file llama_index_llms_ovhcloud-0.2.1-py3-none-any.whl.
File metadata
- Download URL: llama_index_llms_ovhcloud-0.2.1-py3-none-any.whl
- Upload date:
- Size: 6.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df57e79dd8d94ecde032682fec9a011127b2753e43104994234cf24c36dc3885
|
|
| MD5 |
b9370ac547d440aa09d256d23d001208
|
|
| BLAKE2b-256 |
1dc56ba0710a36595e47245bc4948fac078ff6a81c30d77db18f938adcc9f750
|