File size: 413 Bytes
44459bb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
"""Expose useful functions and classes"""
from .api_call.predict.batch_predict import (
batch_prediction_from_file,
)
from .api_call.predict.simple_predict import single_job_prediction
from .api_call.upload_custom_files import upload_custom_files
from .utils.gcp import get_id_token
__all__ = [
"single_job_prediction",
"batch_prediction_from_file",
"get_id_token",
"upload_custom_files",
]
|