import requests
url = "https://api.opper.ai/v3/functions/{name}/realtime"
payload = { "instructions": "<string>" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)