curl --request POST \
--url http://localhost:9000/api/v1/gpt4free \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"messages": [
{
"role": "<string>",
"content": "<string>"
}
],
"model": "<string>",
"stream": true,
"timeout": 123,
"shuffle": true,
"image_url": "<string>"
}
'