sunox 0.0.9

Generate AI music from your terminal via direct Suno web workflows
1
2
3
4
5
6
7
8
9
10
11
12
13
use serde::{Deserialize, Serialize};

#[derive(Debug, Serialize)]
pub struct PromptUpsampleRequest<'a> {
    pub original_tags: &'a str,
    pub is_instrumental: bool,
}

#[derive(Debug, Deserialize)]
pub struct PromptUpsampleResponse {
    pub upsampled: String,
    pub request_id: String,
}