[
    {
        "type": "remote",
        "path": "https://scoopika.com/path-to-audio-file"
    },
    {
        "type": "base64",
        "value": "BASE64_DATA"
    }
]

Used to pass audio input to agents.

One of the following types:

Remote audio (url)

type
"remote"
required

The type of the audio input, has to always be "remote"

path
string
required

The path or url to the audio file.

Base64

type
"base64"
required

The type of the audio input, has to always be "base64"

value
string
required

The base64 value of the audio.

[
    {
        "type": "remote",
        "path": "https://scoopika.com/path-to-audio-file"
    },
    {
        "type": "base64",
        "value": "BASE64_DATA"
    }
]