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.
//! Configuration for Oxen, including user configuration and remote host configuration
//!

pub mod auth_config;
pub mod embedding_config;
pub mod repository_config;
pub mod runtime_config;
pub mod user_config;

pub use crate::config::auth_config::AUTH_CONFIG_FILENAME;
pub use crate::config::auth_config::AuthConfig;

pub use crate::config::embedding_config::EMBEDDING_CONFIG_FILENAME;
pub use crate::config::embedding_config::EmbeddingConfig;

pub use crate::config::user_config::USER_CONFIG_FILENAME;
pub use crate::config::user_config::UserConfig;

pub use crate::config::repository_config::RepositoryConfig;

pub use crate::config::runtime_config::RuntimeConfig;