blueprint-remote-providers 0.2.0-alpha.2

Remote service providers for Tangle Blueprints
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! TensorDock — GPU marketplace with a REST API. Hosts A100s and RTX GPUs at
//! marketplace prices via a JSON API.
//!
//! <https://documenter.getpostman.com/view/10839702/UVByJrCz>
//!
//! Env vars:
//! - `TENSORDOCK_API_KEY` — API key.
//! - `TENSORDOCK_API_TOKEN` — API token (TensorDock uses both).
//! - `TENSORDOCK_REGION` — optional region hint.

mod adapter;
mod instance_mapper;

pub use adapter::TensorDockAdapter;
pub use instance_mapper::TensorDockInstanceMapper;