liboxen 0.53.0

Oxen is a fast data version control system, built with machine learning training data in mind. Designed to handle terabytes of data with ease, using a workflow similar to git. Version both structured and unstructured data of any modality: text, images, video, audio, CSV, Parquet, JSONL, model checkpoints, and more. liboxen is the embeddable core library behind the oxen CLI and server, which power fine tuning and inference pipelines for multimodal LLMs, image models, and video models on Oxen.ai.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub const STATUS_ERROR: &str = "error";
pub const STATUS_SUCCESS: &str = "success";
pub const STATUS_WARNING: &str = "warning";
pub const MSG_RESOURCE_CREATED: &str = "resource_created";
pub const MSG_RESOURCE_UPDATED: &str = "resource_updated";
pub const MSG_RESOURCE_DELETED: &str = "resource_deleted";
pub const MSG_RESOURCE_FOUND: &str = "resource_found";
pub const MSG_RESOURCE_NOT_FOUND: &str = "resource_not_found";
pub const MSG_CONFLICT: &str = "conflict";
pub const MSG_BAD_REQUEST: &str = "bad_request";
pub const MSG_RESOURCE_ALREADY_EXISTS: &str = "resource_already_exists";
pub const MSG_INTERNAL_SERVER_ERROR: &str = "internal_server_error";
pub const MSG_NOT_IMPLEMENTED: &str = "not_implemented";
pub const MSG_UPDATE_REQUIRED: &str = "update_required";