A custom wrapper for the OpenAI Python package with modified response handling
Project description
custom-openai
A robust, user-friendly wrapper for the OpenAI Python package, featuring simplified response formatting and explicit error handling.
Features
- Clean and consistent responses: Always get predictable output from your completions.
- Automatic error handling: Exceptions are caught and returned in a structured way.
- Async and sync support: Use the API in both synchronous and asynchronous Python projects.
Installation
pip install custom-openai
Usage
Synchronous
from custom_openai import CustomOpenAIClient
client = CustomOpenAIClient(api_key="your-api-key")
response = client.chat_completions_create(
model="gpt-4",
messages=[{"role": "user", "content": "Hello!"}],
max_tokens=100
)
if response["success"]:
print(response["content"])
else:
print("Error:", response["error_type"], response["error_message"])
Asynchronous
import asyncio
from custom_openai import CustomAsyncOpenAIClient
async def main():
client = CustomAsyncOpenAIClient(api_key="your-api-key")
response = await client.chat_completions_create(
model="gpt-4",
messages=[{"role": "user", "content": "Hello!"}],
max_tokens=100
)
if response["success"]:
print(response["content"])
else:
print("Error:", response["error_type"], response["error_message"])
asyncio.run(main())
Response Format
All responses follow the same structure:
{
"success": True, # or False if there was an error
"text": "...", # model output (only if success)
"model": "...", # model used
"usage": {
"prompt_tokens": ...,
"completion_tokens": ...,
"total_tokens": ...
},
"finish_reason": "...", # reason for completion
# Error fields (only present if success is False):
"error_type": "...",
"error_message": "..."
}
License
MIT License
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
fq_test_release-0.8.0.tar.gz
(4.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fq_test_release-0.8.0.tar.gz.
File metadata
- Download URL: fq_test_release-0.8.0.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38437bdec0c8a3733248f80df91ba29a093e7ad566efe754eafa3cab4c491703
|
|
| MD5 |
3d0430e37075955e63d0698db7c970e5
|
|
| BLAKE2b-256 |
7e4dc23d2688b95461a2d38a477b715674d8cbd25cc46626d54f1d179c506302
|
File details
Details for the file fq_test_release-0.8.0-py3-none-any.whl.
File metadata
- Download URL: fq_test_release-0.8.0-py3-none-any.whl
- Upload date:
- Size: 4.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60462940b29f399e2f29d19724977c029ed0e488c350f162b894ba8f52161a3c
|
|
| MD5 |
afbabe723c4324a70bb201eccc191ce4
|
|
| BLAKE2b-256 |
757d7daeb99de114eb44e2b864822939d0f5f998b24e42d36163ae703c58e78d
|