Load balancer for asynchroneous requests to the APIs of OpenAI and Azure (if configured) for ChatGPT
Project description
Load Balancing ChatGPT (LBGPT)
Enhance your ChatGPT API experience with the LoadBalancing ChatGPT (LBGPT), a wrapper around OpenAI's API designed to boost performance, enable caching, and provide seamless integration with Azure's OpenAI API.
This tool significantly optimizes single request response times by asynchronously interacting with the OpenAI API and efficiently caching results. It also offers automatic retries in the event of API errors and the option to balance requests between OpenAI and Azure for an even more robust AI experience.
Installation
You can easily install LoadBalancing ChatGPT via pip:
pip install lbgpt
Usage
Basic
Initiate asynchronous calls to the ChatGPT API using the following basic example:
import lbgpt
import asyncio
chatgpt = lbgpt.ChatGPT(api_key="YOUR_API_KEY")
res = asyncio.run(chatgpt.chat_completion_list([ "your list of prompts" ]))
The chat_completion_list
function expects a list of dictionaries with fully-formed OpenAI ChatCompletion API requests. Refer to the OpenAI API definition for more details. You can also use the chat_completion
function for single requests.
By default, LBGPT processes five requests in parallel, but you can adjust this by setting the max_concurrent_requests
parameter in the constructor.
Caching
Take advantage of request caching to avoid redundant calls:
import lbgpt
import asyncio
import diskcache
cache = diskcache.Cache("cache_dir")
chatgpt = lbgpt.ChatGPT(api_key="YOUR_API_KEY", cache=cache)
res = asyncio.run(chatgpt.chat_completion_list([ "your list of prompts" ]))
While LBGPT is tested with diskcache, it should work seamlessly with any cache that implements the __getitem__
and __setitem__
methods.
Azure
For users with an Azure account and proper OpenAI services setup, lbgpt offers an interface for Azure, similar to the OpenAI API. Here's how you can use it:
import lbgpt
import asyncio
chatgpt = lbgpt.AzureGPT(api_key="YOUR_API_KEY", azure_api_base="YOUR AZURE API BASE", azure_model_map={"OPENAI_MODEL_NAME": "MODEL NAME IN AZURE"})
res = asyncio.run(chatgpt.chat_completion_list([ "your list of prompts" ]))
To ensure interchangeability, map OpenAI model names to Azure model names using the azure_model_map
parameter in the constructor (see https://learn.microsoft.com/en-us/azure/ai-services/openai/how-to/switching-endpoints for details).
Load Balacing OpenAI and Azure
For optimal performance and reliability, it's recommended to set up the LoadBalancedGPT
:
import lbgpt
import asyncio
chatgpt = lbgpt.LoadBalancedGPT(
openai_api_key="YOUR_OPENAI_API_KEY",
azure_api_key="YOUR_AZURE_API_KEY",
azure_api_base="YOUR AZURE API BASE",
azure_model_map={"OPENAI_MODEL_NAME": "MODEL NAME IN AZURE"})
res = asyncio.run(chatgpt.chat_completion_list([ "your list of prompts" ]))
By default, 75% of requests are routed to the Azure API, while 25% go to the OpenAI API. You can customize this ratio by setting the ratio_openai_to_azure
parameter in the constructor, taking into account that the Azure API is considerably faster.
How to Get API Keys
To obtain your OpenAI API key, visit the official OpenAI site. For Azure API key acquisition, please refer to the official Azure documentation.
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
Built Distribution
File details
Details for the file lbgpt-0.0.4.tar.gz
.
File metadata
- Download URL: lbgpt-0.0.4.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31b74f341cfeecf62d2e07f667134072498edbecdbebdfc166d4dc5abb492de6 |
|
MD5 | 764e8515f0ca036eb4550c8112d5038d |
|
BLAKE2b-256 | 7e34847a752ab566562faadf98b905bd6509038eeef515a9b984f73813a7297d |
File details
Details for the file lbgpt-0.0.4-py3-none-any.whl
.
File metadata
- Download URL: lbgpt-0.0.4-py3-none-any.whl
- Upload date:
- Size: 5.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c3eda84c1a931ba2991e90a9c07e7a987cceff7e511dbb7c3f72b468d30835e3 |
|
MD5 | 9ead0e4a087a421a287690c6242e441b |
|
BLAKE2b-256 | 056e7af32f2485138205f221dccbc1cf082fd4444636da885107f3e5b775dbae |