Slim Runner for batched OpenAI Requests
Project description
OpenAI Request Runner
A lightweight Python package designed to facilitate parallel processing of OpenAI API requests. This implementation is inspired by the OpenAI cookbook example but offers advanced customization capabilities and integration with OpenAI Functions (leaning on the great openai_function_call library). It ensures efficient and organized interactions with the OpenAI models. Features
- Parallel Processing: Handle multiple OpenAI API requests concurrently.
- Rate Limiting: Adheres to rate limits set by the OpenAI API.
- Advanced Customization: Allows for detailed input preprocessing and API response postprocessing.
- OpenAI Functions: Seamlessly integrates with OpenAI Functions for added capabilities.
- Error Handling: Efficiently manage and log errors, including rate limit errors.
- Extendable: Easily integrate with custom schemas and other extensions.
Installation
Using pip (wip)
pip install openai_request_runner
Git
pip install git@https://github.com/jphme/openai_request_runner
Using poetry
For local development and testing:
poetry install
Usage
Minimal example:
from openai_request_runner import run_openai_requests
example_input = [{"id": 0, "prompt": "What is 1+1?"}]
results = run_openai_requests(
example_input, system_prompt="Translate input to French"
)
#in a notebook env you need nest_asyncio, see below
print(results[0]["content"])
# "Qu'est-ce que 1+1 ?"
See examples/classify_languages.py
and examples/translate.py
for detailed examples of how to use the package for advanced usecases.
The package allows for extensive customization. You can set your desired preprocessing function, postprocessing function, and other parameters to suit your specific needs.
Refer to the inline documentation and docstrings in the code for detailed information on each function and its parameters.
Run inside a notbook
If you want to run openai_request_runner inside a notebook, use nest_asyncio
like this:
import nest_asyncio
nest_asyncio.apply()
Run Tests
poetry run pytest tests/
Contributing
Contributions are welcome! Please open an issue if you encounter any problems or would like to suggest enhancements. Pull requests are also appreciated.
License
MIT
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
Built Distribution
File details
Details for the file openai_request_runner-0.1.0.tar.gz
.
File metadata
- Download URL: openai_request_runner-0.1.0.tar.gz
- Upload date:
- Size: 12.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.10.13 Linux/6.2.0-1016-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 27258acead8a67b97df0edcdfe9d44569319ac1e4f9d52212f0ee84c6d64daa0 |
|
MD5 | ee4dbecf84d8266066624fd43959a380 |
|
BLAKE2b-256 | 82e25e7c318f3bb2971988fff5c36bf0e53de1649a5f925af4929303c2d9e883 |
File details
Details for the file openai_request_runner-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: openai_request_runner-0.1.0-py3-none-any.whl
- Upload date:
- Size: 11.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.10.13 Linux/6.2.0-1016-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9dc9315d74c3d8eb037a7cdb3d7711b7b9327e698d58337d6b070309bbfb75a0 |
|
MD5 | cfd303b53ae623012a8bf362fb2f631d |
|
BLAKE2b-256 | f7da2121693b5a5743ba3144b0c126e4b5657a51fdc93daf96c959c754e1a51d |