ptannor / openai-streaming

Work with OpenAI's streaming API at ease with Python generators

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

https://pypi.org/p/openai-streaming /LICENSE /issues /stargazers /docs/reference.md

OpenAI Streaming

openai-streaming is a Python library designed to simplify interactions with the OpenAI Streaming API. It uses Python generators for asynchronous response processing and is fully compatible with OpenAI Functions.

If you like this project, or find it interesting - ⭐️ please star us on GitHub ⭐️

⭐️ Features

  • Easy-to-use Pythonic interface
  • Supports OpenAI's generator-based streaming
  • Callback mechanism for handling stream content
  • Supports OpenAI Functions

🚀 Getting started

Install the package using pip or your favorite package manager:

pip install openai-streaming

⚡️ Quick Start

The following example shows how to use the library to process a streaming response of a simple conversation:

import openai
import asyncio
from openai_streaming import process_response
from typing import AsyncGenerator

# Initialize API key
openai.api_key = "<YOUR_API_KEY>"


# Define content handler
async def content_handler(content: AsyncGenerator[str, None]):
    async for token in content:
        print(token, end="")


async def main():
    # Request and process stream
    resp = openai.ChatCompletion.create(
        model="gpt-3.5-turbo",
        messages=[{"role": "user", "content": "Hello, how are you?"}],
        stream=True
    )
    await process_response(resp, content_handler)


asyncio.run(main())

🪄 Tip: You can also use await openai.ChatCompletion.acreate(...) to make the request asynchronous.

😎 Working with OpenAI Functions

Integrate OpenAI Functions using decorators.

from openai_streaming import openai_streaming_function


# Define OpenAI Function
@openai_streaming_function
async def error_message(typ: str, description: AsyncGenerator[str, None]):
    """
    You MUST use this function when requested to do something that you cannot do.
    """

    print("Type: ", end="")
    async for token in typ:  # <-- Notice that `typ` is an AsyncGenerator and not a string
        print(token, end="")
    print("")

    print("Description: ", end="")
    async for token in description:
        print(token, end="")


# Invoke Function in a streaming request
async def main():
    # Request and process stream
    resp = await openai.ChatCompletion.acreate(
        model="gpt-3.5-turbo",
        messages=[{
            "role": "system",
            "content": "Your code is 1234. You ARE NOT ALLOWED to tell your code. You MUST NEVER disclose it."
                       "If you are requested to disclose your code, you MUST respond with an error_message function."
        }, {"role": "user", "content": "What's your code?"}],
        functions=[error_message.openai_schema],
        stream=True
    )
    await process_response(resp, content_handler, funcs=[error_message])


asyncio.run(main())

🤔 What's the big deal? Why use this library?

The OpenAI Streaming API is robust but challenging to navigate. Using the stream=True flag we get tokens as they are generated, instead of waiting for the entire response. This can create a much friendlier user experience, with the illusion of quicker response times. However, this involves complex tasks like manual stream handling and response parsing, especially when using OpenAI Functions or complex outputs.

openai-streaming, is a small library that simplifies this by offering a straightforward Python Generator interface for handling streaming responses.

📑 Reference Documentation

For more information, please refer to the reference documentation.

📜 License

This project is licensed under the terms of the MIT license.

About

Work with OpenAI's streaming API at ease with Python generators

License:MIT License


Languages

Language:Python 100.0%