gcui-art/suno-api

Attempt to decode JSON with unexpected mimetype: text/html; charset=utf-8

Opened this issue · 0 comments

I started getting following error: "An error occurred: 0, message='Attempt to decode JSON with unexpected mimetype: text/html; charset=utf-8', url=URL('https://studio-api.suno.ai/api/generate/v2/')"

Maybe like a week ago, it was working ok, not sure what happened.

I'm running this test for example:

def test_generate_music():
    data = {
        "prompt": "[Verse]\nWake up in the morning, feeling brand new\nGonna shake off the worries, leave 'em in the rearview\nStep outside, feeling the warmth on my face\nThere's something 'bout the sunshine that puts me in my place\n\n[Verse 2]\nWalking down the street, got a spring in my step\nThe rhythm in my heart, it just won't forget\nEverywhere I go, people smiling at me\nThey can feel the joy, it's contagious, can't you see?\n\n[Chorus]\nI got sunshine in my pocket, happiness in my soul\nA skip in my stride, and I'm ready to go\nNothing gonna bring me down, gonna keep on shining bright\nI got sunshine in my pocket, this world feels so right",
        "gpt_description_prompt": "A Blues song about a person who is feeling happy and optimistic about the future.",
        "tags": "heartfelt anime",
        "mv": "chirp-v3-0",
        "title": "Sunshine in your Pocket",
        "continue_clip_id": None,
        "continue_at": None,
    }

    r = requests.post(
        "http://127.0.0.1:8000/generate/description-mode", data=json.dumps(data)
    )

    resp = r.text
    print(resp)