Skip to main content

llama-index llms openai integration

Project description

LlamaIndex Llms Integration: Openai

Installation

To install the required package, run:

%pip install llama-index-llms-openai

Setup

  1. Set your OpenAI API key as an environment variable. You can replace "sk-..." with your actual API key:
import os

os.environ["OPENAI_API_KEY"] = "sk-..."

Basic Usage

Generate Completions

To generate a completion for a prompt, use the complete method:

from llama_index.llms.openai import OpenAI

resp = OpenAI().complete("Paul Graham is ")
print(resp)

Chat Responses

To send a chat message and receive a response, create a list of ChatMessage instances and use the chat method:

from llama_index.core.llms import ChatMessage

messages = [
    ChatMessage(
        role="system", content="You are a pirate with a colorful personality."
    ),
    ChatMessage(role="user", content="What is your name?"),
]
resp = OpenAI().chat(messages)
print(resp)

Streaming Responses

Stream Complete

To stream responses for a prompt, use the stream_complete method:

from llama_index.llms.openai import OpenAI

llm = OpenAI()
resp = llm.stream_complete("Paul Graham is ")
for r in resp:
    print(r.delta, end="")

Stream Chat

To stream chat responses, use the stream_chat method:

from llama_index.llms.openai import OpenAI
from llama_index.core.llms import ChatMessage

llm = OpenAI()
messages = [
    ChatMessage(
        role="system", content="You are a pirate with a colorful personality."
    ),
    ChatMessage(role="user", content="What is your name?"),
]
resp = llm.stream_chat(messages)
for r in resp:
    print(r.delta, end="")

Configure Model

You can specify a particular model when creating the OpenAI instance:

llm = OpenAI(model="gpt-3.5-turbo")
resp = llm.complete("Paul Graham is ")
print(resp)

messages = [
    ChatMessage(
        role="system", content="You are a pirate with a colorful personality."
    ),
    ChatMessage(role="user", content="What is your name?"),
]
resp = llm.chat(messages)
print(resp)

Asynchronous Usage

You can also use asynchronous methods for completion:

from llama_index.llms.openai import OpenAI

llm = OpenAI(model="gpt-3.5-turbo")
resp = await llm.acomplete("Paul Graham is ")
print(resp)

Set API Key at a Per-Instance Level

If desired, you can have separate LLM instances use different API keys:

from llama_index.llms.openai import OpenAI

llm = OpenAI(model="gpt-3.5-turbo", api_key="BAD_KEY")
resp = OpenAI().complete("Paul Graham is ")
print(resp)

LLM Implementation example

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

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

llama_index_llms_openai-0.3.39.tar.gz (22.8 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_openai-0.3.39-py3-none-any.whl (23.9 kB view details)

Uploaded Python 3

File details

Details for the file llama_index_llms_openai-0.3.39.tar.gz.

File metadata

File hashes

Hashes for llama_index_llms_openai-0.3.39.tar.gz
Algorithm Hash digest
SHA256 982d40f5ae850b9e59003bdd28ea39be01e219fead66767f5544fb18ed1e4e8a
MD5 ff2fb5d7382f82095da1780f44775bfc
BLAKE2b-256 b5b0125fd8131e85d35dc48f8f72ad41600e5e76879fe6b5e0db1f22b66a827d

See more details on using hashes here.

File details

Details for the file llama_index_llms_openai-0.3.39-py3-none-any.whl.

File metadata

File hashes

Hashes for llama_index_llms_openai-0.3.39-py3-none-any.whl
Algorithm Hash digest
SHA256 40e6755ce8be7f3191f642d19f49589c012a1f8b465f0cf5fd5bbf1f8e08c339
MD5 bf05614a84f7a946093f39fdf617ea21
BLAKE2b-256 13ea5c3a7d9bb7d47e39f9c93021f3ac8ab3b70252362be8ca888a9d47197193

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