Skip to main content

llama-index llms openrouter integration

Project description

LlamaIndex Llms Integration: Openrouter

Installation

To install the required packages, run:

%pip install llama-index-llms-openrouter
!pip install llama-index

Setup

Initialize OpenRouter

You need to set either the environment variable OPENROUTER_API_KEY or pass your API key directly in the class constructor. Replace <your-api-key> with your actual API key:

from llama_index.llms.openrouter import OpenRouter
from llama_index.core.llms import ChatMessage

llm = OpenRouter(
    api_key="<your-api-key>",
    max_tokens=256,
    context_window=4096,
    model="gryphe/mythomax-l2-13b",
)

Generate Chat Responses

You can generate a chat response by sending a list of ChatMessage instances:

message = ChatMessage(role="user", content="Tell me a joke")
resp = llm.chat([message])
print(resp)

Streaming Responses

To stream responses, use the stream_chat method:

message = ChatMessage(role="user", content="Tell me a story in 250 words")
resp = llm.stream_chat([message])
for r in resp:
    print(r.delta, end="")

Complete with Prompt

You can also generate completions with a prompt using the complete method:

resp = llm.complete("Tell me a joke")
print(resp)

Streaming Completion

To stream completions, use the stream_complete method:

resp = llm.stream_complete("Tell me a story in 250 words")
for r in resp:
    print(r.delta, end="")

Model Configuration

To use a specific model, you can specify it during initialization. For example, to use Mistral's Mixtral model, you can set it like this:

llm = OpenRouter(model="mistralai/mixtral-8x7b-instruct")
resp = llm.complete("Write a story about a dragon who can code in Rust")
print(resp)

LLM Implementation example

https://docs.llamaindex.ai/en/stable/examples/llm/openrouter/

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

llama_index_llms_openrouter-0.4.1.tar.gz (4.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

llama_index_llms_openrouter-0.4.1-py3-none-any.whl (4.3 kB view details)

Uploaded Python 3

File details

Details for the file llama_index_llms_openrouter-0.4.1.tar.gz.

File metadata

File hashes

Hashes for llama_index_llms_openrouter-0.4.1.tar.gz
Algorithm Hash digest
SHA256 4a2eb6babc568c3dad09cc0cef85057243f318bf2138d3bd4717608c293ae8ab
MD5 6fcbcd97f2866865eb7e86043d9eae5d
BLAKE2b-256 60d93bc495f6268252a7e12cc981bbfb63349f7373ea865fb66fd21ca821f868

See more details on using hashes here.

File details

Details for the file llama_index_llms_openrouter-0.4.1-py3-none-any.whl.

File metadata

File hashes

Hashes for llama_index_llms_openrouter-0.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c52eae0fe8e93298a969a179820c788a27889d5d673d9728202f15db0501eceb
MD5 28f82bb7b510b25ef6d4928a91e2c5fd
BLAKE2b-256 ba7237e9e4ed827bcc7c69454e18e6a6ae7d57a3145ee0ba1dfaddb14fa1ac92

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page