const response = await fetch('https://api.helicone.ai/v1/prompt-2025/id/prompt_123/tags', {
method: 'PATCH',
headers: {
'Authorization': `Bearer ${HELICONE_API_KEY}`,
'Content-Type': 'application/json',
},
body: JSON.stringify({
tags: ["customer-support", "v2", "production"]
}),
});
const result = await response.json();