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.0.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.0-py3-none-any.whl (4.3 kB view details)

Uploaded Python 3

File details

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

File metadata

File hashes

Hashes for llama_index_llms_openrouter-0.4.0.tar.gz
Algorithm Hash digest
SHA256 9f5cd499fe55b7b3eb1d3d76d1063e3d86920d63acadba01f3bf735031731b7e
MD5 5968f450b1fc172dcc716c09255855ad
BLAKE2b-256 be60edc5ce478638b87e7db66ad238fc539cff6241b81090cb05bc583663c6c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for llama_index_llms_openrouter-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b7475c65ffdfc169801ba7ce430a8ace33e1892977e2bfd132a3a0484bcb131e
MD5 3001b2c85929670181bc5f51ba8ab585
BLAKE2b-256 e862893e832d42400bbd33778e7703f3b62597f367b3ef9c28b1df7d4e33cab4

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