synth-ai-core 0.3.0

Rust core for Synth AI SDKs - API client, streaming, tracing, and tunnels
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! MIPRO-specific helpers.

use crate::api::{MiproJobRequest, SynthClient};
use crate::errors::CoreError;

/// Submit a MIPRO job and return the job ID.
pub async fn submit_mipro_job(
    client: &SynthClient,
    request: MiproJobRequest,
) -> Result<String, CoreError> {
    client.jobs().submit_mipro(request).await
}