This library provides a simple interface for integrating OpenAI ChatGPT batch processing into any Python development environment. It supports event-driven architecture, making it easy to handle batch job completions.
(Note: Read The License Disclaimer about code status and AI assited coding)
pip install openai_batch_sdk
from openai_batch_sdk import start_monitoring, EventHandler, send_notification, retrieve_batch_results
# Initialize event handler
event_handler = EventHandler()
event_handler.register_event("batch_completed", send_notification)
# Start monitoring the batch job
start_monitoring("/app/path_to_your_file.jsonl", event_handler)
- Navigate to the Project Directory:
cd /path/to/openai_batch_sdk
- Install Dependencies:
pip install -r requirements.txt
- Build the Package:
python setup.py sdist bdist_wheel
- Navigate to the Tests Directory:
cd /path/to/openai_batch_sdk/tests
- Run the Tests:
python -m unittest discover
- Create a Docker Image:
docker build -t openai_batch_sdk:latest /path/to/openai_batch_sdk
- Run the Docker Container:
docker run -d openai_batch_sdk:latest
- Apply the Kubernetes Configuration:
kubectl apply -f /path/to/openai_batch_sdk/k8s-deployment.yaml
MIT License (Read The Disclaimer)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
Disclaimer: This project is a draft and has not been battle-tested. Use at your own risk. The software is provided "as is", without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose, and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages, or other liability, whether in an action of contract, tort, or otherwise, arising from, out of, or in connection with the software or the use or other dealings in the software.
Generated with the help of ChatGPT.