Awesome, thank you - really enjoying workflows so far overall 🤓
Awesome, thank you - really enjoying workflows so far overall 
get requests are ok for the most part, the requests that are failing are post. 



wrangler.json instead:getpost[[workflows]]wrangler.json const generatedContent = await step.do("Write content", async () => {
const ai = new OpenAI({
apiKey: this.env.CLOUDFLARE_AI_TOKEN,
baseURL: `https://api.cloudflare.com/client/v4/accounts/{my account id}/ai/v1`,
});
const result = await ai.chat.completions.create({
model: "@cf/meta/llama-3.1-8b-instruct",
messages: [...example]
})
return result.choices[0].message.content;
})