使用示例
const response = await fetch('https://YOUR-PROXY-URL/api/generation/pollo-v2-0', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-api-key': 'YOUR_POLLO_API_KEY'
},
body: JSON.stringify({
input: {
prompt: 'a bird singing on a tree',
length: 5
}
})
});
const data = await response.json();
console.log(data);