hello ! You need to either send `messages` or `prompt` ```typescript const aiResponse: any = await e

hello ! You need to either send
messages
or prompt
const aiResponse: any = await env.AI.run(
  "@cf/mistralai/mistral-small-3.1-24b-instruct",
  {
    messages: [
      { role: "system", content: "You're a helpful assistant." },
      { role: "assistant", content: prompt }
    ]
  }
);

or
const aiResponse: any = await env.AI.run(
  "@cf/mistralai/mistral-small-3.1-24b-instruct",
  {
     "prompt": prompt
  }
);
Was this page helpful?