heat-sdk-cli 0.1.0

Tracel Heat SDK CLI.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use clap::Parser;

/// Run an inference remotely.
/// Not yet supported.
#[derive(Parser, Debug)]
pub struct RemoteInferenceRunArgs {
    //todo
}

pub(crate) fn handle_command(_args: RemoteInferenceRunArgs) -> anyhow::Result<()> {
    todo!("Remote inference is not yet supported")
}