sunox 0.0.10

Generate AI music from your terminal via direct Suno web workflows
use super::SunoClient;
use super::types::{PromptUpsampleRequest, PromptUpsampleResponse};
use crate::core::CliError;

impl SunoClient {
    /// Ask Suno to enhance style tags. When used before generation, the web
    /// client carries the returned request_id into metadata.last_tags_generation.
    pub async fn upsample_tags(
        &self,
        original_tags: &str,
        is_instrumental: bool,
    ) -> Result<PromptUpsampleResponse, CliError> {
        let req = PromptUpsampleRequest {
            original_tags,
            is_instrumental,
        };
        self.with_auth_retry(|| async {
            let resp = self.post("/api/prompts/upsample").json(&req).send().await?;
            let resp = self.check_response(resp).await?;
            Ok(resp.json().await?)
        })
        .await
    }
}