Skip to content

Instantly share code, notes, and snippets.

@fwartner
Created May 15, 2024 08:25
Show Gist options
  • Save fwartner/00cbfa7151803a84ed021ca4663a908c to your computer and use it in GitHub Desktop.
Save fwartner/00cbfa7151803a84ed021ca4663a908c to your computer and use it in GitHub Desktop.
export default {
async fetch(request, env) {
const body = await request.json();
const response = await env.AI.run("@cf/meta/llama-3-8b-instruct", body);
return new Response(JSON.stringify(response));
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment