A module for batch processing with Google Cloud Storage and MongoDB integration.
Project description
vertex_batch Library Documentation
vertex_batch is a Python library designed for LLM google vertex batch processing. It provides abstractions for database operations, batch file handling, and callback server management, enabling scalable and robust batch processing pipelines.
Features
- Batch Database Management: Store, update, and retrieve conversational payloads for batch processing.
- Batch File Generation: Write payloads to batch files for LLM processing (e.g., Gemini).
- Callback Server: Receive and process batch results via HTTP callbacks.
- Integration with LLM Workflows: Easily integrate with Celery tasks and main application logic.
Installation
Add vertex_batch to your project (ensure it's in your Python path):
pip install vertex_batch
Usage
1. Database Operations
Use vertex_batch.db.Db to interact with the batch database.
from vertex_batch.db import Db
db = Db(
url="...",
db_name="...",
batch_collection_name="..."
)
# Save, update, and retrieve payloads
db.save_payload(payload)
db.update_payload(custom_id="...", status="DONE")
payloads = db.get_payloads(status="PENDING")
2. Batch File Generation
Use vertex_batch.file.File to write payloads to batch files and process them with LLMs.
from vertex_batch.file import File
from pathlib import Path
from datetime import datetime
file = File(
db=db,
folder_path=Path("batchs_files/input"),
file_name_format=f"voc_batch_{datetime.now().strftime('%Y%m%d_%H%M%S')}_batch.jsonl",
gemini_model="publishers/google/models/gemini-2.5-flash"
)
payloads = db.get_payloads(status="PENDING")
file.write(paylods=payloads)
file.process()
3. Line Management
Use vertex_batch.line.Line to save individual batch lines for LLM processing.
from vertex_batch.line import Line
line = Line(
db=db,
custom_id="conversationId-vocId",
user_prompt="User prompt text",
sys_prompt="System prompt text",
**kwargs
)
line.save()
4. Callback Server
Use vertex_batch.callback.Callback to start a callback server that receives batch results and processes them.
from vertex_batch.callback import Callback
from pathlib import Path
def treat_answers(payloads, file_path):
# Custom logic to process batch results
pass
callback = Callback(
db=db,
port=8010,
destination_dir=Path("batchs_files/output"),
func=treat_answers
)
callback.start_server()
You can run the callback server in a separate thread:
import threading
threading.Thread(target=callback.start_server, daemon=True).start()
NOTE : the callback path is /batch_processing_done
Example Workflow
- Save payloads to the batch database using
Db. - Generate batch files for LLM processing using
File. - Process batch results via the callback server (
Callback), which calls your custom handler (treat_answers). - Update payloads and send results to downstream systems (e.g., Kafka).
Integration with Celery
You can use vertex_batch in Celery tasks for asynchronous batch processing:
from vertex_batch.db import Db
from vertex_batch.line import Line
from vertex_batch.file import File
@celery_app.task(name="...")
def function_task():
db = Db(...)
file = File(...)
payloads = db.get_payloads(status="PENDING")
file.write(paylods=payloads)
file.process()
API Reference
Db
Db.save_payload(payload)Db.update_payload(custom_id, status=None, answer=None)Db.get_payloads(status)Db.get_payload(custom_id)Db.flag_payloads(file_path, flag)
File
File.write(paylods, is_relaunch=False)File.process()
Line
Line.save()
Callback
Callback(db, port, destination_dir, func)Callback.start_server()
DO NOT FORGET TO SET THOSE OS ENV VARIABLES
- GOOGLE_APPLICATION_CREDENTIALS
- GOOGLE_STORAGE_BUCKET
- GOOGLE_PROJECT_NAME
- GOOGLE_PROJECT_LOCATION
- BATCH_FILE_SIZE_LIMIT
- MONGO_DB_URL
License
MIT License : AYOUB ERRKHIS
Contributing
Contributions are welcome! Please submit issues or pull requests via GitHub.
Contact
For support or questions, contact the maintainers or open an issue on the repository.
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 vertex_batch-0.1.17.tar.gz.
File metadata
- Download URL: vertex_batch-0.1.17.tar.gz
- Upload date:
- Size: 9.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
75af3bde3a819f8c76773e990f353e7235daf77259c80f5225e7e870db91f414
|
|
| MD5 |
af063006612adeb8a95e2e5752ffb6b8
|
|
| BLAKE2b-256 |
75055f250db1a9f5a42ede9d0de3b0b3d5bd9b6006205f43a720deab4247b38b
|
File details
Details for the file vertex_batch-0.1.17-py3-none-any.whl.
File metadata
- Download URL: vertex_batch-0.1.17-py3-none-any.whl
- Upload date:
- Size: 9.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d5030832a44551b2b9335c1083d584d6a4f36ece567b4ecd5aba5dd05265944
|
|
| MD5 |
410d9e6e69e66136750517182168a875
|
|
| BLAKE2b-256 |
22f1c075f84fb6e0a9ad2553b5b2ea531f26356f87d0eedeb34a565911fdec15
|