runpod-sdk 0.2.2

Unofficial Rust SDK for RunPod: deploy and scale GPU workloads with serverless endpoints and on-demand pods
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Serverless endpoint execution and job management.
//!
//! This module provides functionality for running jobs on RunPod serverless endpoints,
//! including synchronous runs, streaming outputs, and asynchronous job status tracking.

mod client;
mod job;
mod types;

pub use client::ServerlessEndpoint;
pub use job::ServerlessJob;
pub use types::{EndpointHealth, JobOutput, JobStatus, StreamChunk};
pub(crate) use types::{JobStatusResponse, RunRequest, RunResponse, StreamResponse};