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.5.0.tar.gz
(4.5 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.5.0.tar.gz.
File metadata
- Download URL: fq_test_release-0.5.0.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80281fe62ab9163ee884a257fbcce4e7332efb4466cf31d51be995b92a28abd8
|
|
| MD5 |
a930bc465ec0eefb2e9bab6b2711a3f5
|
|
| BLAKE2b-256 |
cf99d784ed4dd5167665960e57645d1d35b9984110d7f03013502d816c5450c7
|
File details
Details for the file fq_test_release-0.5.0-py3-none-any.whl.
File metadata
- Download URL: fq_test_release-0.5.0-py3-none-any.whl
- Upload date:
- Size: 4.9 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 |
305344c90a7531f826111ee9740dd4392e138aed05221b05718d5bcf6bd7a4d7
|
|
| MD5 |
6aed4cd590999b57af97469eecb2bf47
|
|
| BLAKE2b-256 |
4fb20fe562835296e34b262790de3da843cbf35d69699a0640a2437e0f109c76
|