A custom wrapper for the Langchain Python package with modified response handling
Project description
custom_openai
custom_openai is a drop-in replacement for the official OpenAI Python SDK, enabling you to easily customize, standardize, and enrich the API responses for your own post-processing, logging, RAG pipelines, or monitoring needs.
It supports both synchronous and asynchronous usage, with robust support for streaming and complete compatibility with the OpenAI API.
🚀 Features
- Plug-and-play: Fully compatible with the OpenAI client interface. Just swap your import and go.
- Custom response fields: Every
.create()call (sync/async/streaming) includes a.flashqueryattribute for easy extraction of processed or enriched response data. - Streaming support: Automatically injects your custom data into the final item in async generator streams.
- No monkey-patching: Cleanly extends OpenAI’s classes without risky global side effects.
📦 Installation
pip install flashquery
🔥 Quickstart
Synchronous Example
from flashquery.client import CustomLangchainClient
client = CustomLangchainClient(
provider="openai",
model="gpt-4o-mini",
temperature=0,
api_key="sk-..."
)
response = client.generate([{"role": "user", "content": "Say hello?"}])
print(response.flashquery) # Your custom field!
Streaming Example
import asyncio
from flashquery.client import CustomLangchainClient
async def main():
client = CustomLangchainClient(
provider="openai",
model="gpt-4o-mini",
temperature=0,
api_key="sk-..."
)
response = client.astream([{"role": "user", "content": "Oi, tudo bem?"}])
async for chunk in response:
print("Chunk:", chunk.flashquery)
asyncio.run(main())
⚙️ How it Works
- CustomOpenAIClient and CustomAsyncOpenAIClient inherit from the official OpenAI clients, overriding
.create()methods ofresponsesandchat.completions. - After each response is created, a new
.flashqueryattribute is attached. - In streaming mode,
.flashqueryis set on the last chunk yielded from the generator.
🤝 Contributing
Pull requests are welcome! For major changes, please open an issue first to discuss what you would like to change.
📄 License
MIT License
Need help? Open an issue or contribute on GitHub!
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
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 flashquery-0.0.6.tar.gz.
File metadata
- Download URL: flashquery-0.0.6.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c812012f23a808b1fc75246f23e6d58ee5e5cdb237c206ecc2d5880796c5bd1
|
|
| MD5 |
e99178264c867c203c11ab8470a61b7f
|
|
| BLAKE2b-256 |
8006f6adb4da300d713d3f0d7e87db7cd369de636a3ebafc8c57e9dc1c4db53a
|
File details
Details for the file flashquery-0.0.6-py3-none-any.whl.
File metadata
- Download URL: flashquery-0.0.6-py3-none-any.whl
- Upload date:
- Size: 4.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53b8a2ebfe07eeddee71ec5acceb882f27634befa279d0b1506483e61a3d4a5f
|
|
| MD5 |
71fb88f023b81944a80e92f22ccda52d
|
|
| BLAKE2b-256 |
c848ba69bd5de1aec427c912c500ce8d78d1075292e57fe436407245477aaeb2
|