Skip to main content

Python library for asynchronous interactions with the OpenAI API, enabling concurrent request handling. It simplifies building scalable, AI-powered applications by offering efficient, rate-limited access to OpenAI services. Perfect for developers seeking to integrate OpenAI's capabilities with minimal overhead.

Project description

Concurrent OpenAI Manager

The Concurrent OpenAI Manager is a pure Python library meticulously designed for developers seeking an optimal integration with OpenAI's APIs. This library is engineered to handle API requests with efficiency, ensuring compliance with rate limits and managing system resources effectively, all while providing transparent cost estimations for OpenAI services.

Key features

Rate limiting

Central to the library is a carefully crafted rate limiter, capable of managing the number of requests and tokens per minute. This ensures your application stays within OpenAI's usage policies, avoiding rate limit violations and potential service disruptions.

Throttled Request Dispatching

The throttling mechanism is designed to prevent sudden surges of requests, spreading them evenly over time. This ensures a steady and predictable load on OpenAI's endpoints, contributing to a responsible utilization of API resources and avoiding the 429 errors that might occur if we simply do all the requests at once.

Semaphore for Concurrency Control

To manage local system resources or limit parallelism, the library incorporates a semaphore mechanism. This allows developers to specify the maximum number of concurrent operations, ensuring balanced resource utilization and a responsive application performance. Useful when you want tot manage local resources (such as database connections or memory usage) or wish to limit parallelism to ensure a responsive user experience. By fine-tuning the semaphore value, you have control on the amount of coroutines that are on the Event Loop.

Cost Estimation

A notable feature of the Concurrent OpenAI Manager is its built-in cost estimation. This functionality provides users with detailed insights into the cost implications of their API requests, including a breakdown of prompt and completion tokens used. Such transparency empowers users to manage their budget effectively and optimize their use of OpenAI's APIs.

Getting started

Integrating the Concurrent OpenAI Manager into your project is straightforward:

$ pip install concurrent-openai

Usage

  1. Create a .env file in your project directory.
  2. Add an env variable named OPENAI_API_KEY.
  3. Test it out:
from concurrent_openai import process_completion_requests

results = await process_completion_requests(
    prompts=[{"role": "user", "content": "Knock, knock!"}],
    model="gpt-4-0613",
    temperature=0.7,
    max_tokens=150,
    max_concurrent_requests=5,
    token_safety_margin=10,
)

for result in results:
    if result:
        print(result)
    else:
        print("Error processing request.")

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

concurrent_openai-0.1.1.tar.gz (9.2 kB view details)

Uploaded Source

Built Distribution

concurrent_openai-0.1.1-py3-none-any.whl (10.6 kB view details)

Uploaded Python 3

File details

Details for the file concurrent_openai-0.1.1.tar.gz.

File metadata

  • Download URL: concurrent_openai-0.1.1.tar.gz
  • Upload date:
  • Size: 9.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.9.15 Darwin/23.4.0

File hashes

Hashes for concurrent_openai-0.1.1.tar.gz
Algorithm Hash digest
SHA256 38d2ca4619a8150f590875e6a946bddffdf637e7a266594effe06f038d5203eb
MD5 334ab098ca1568c134b825a4a45a93ea
BLAKE2b-256 7c85990558843dfcc2646585d3e9e58a8dbbf5b6d96817fcc7f4993cb149eea0

See more details on using hashes here.

File details

Details for the file concurrent_openai-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for concurrent_openai-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 2697522d17ac1c8a65dad6e0283d550e2806794231ebd93d2c53cbd627824e68
MD5 4d906c33c2c25b0b799969b0e6328575
BLAKE2b-256 bb758754f81eb795b8064cdeecadc3c7871cc3dec0d824e676d70c28eccae882

See more details on using hashes here.

Supported by

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