Full code straight from the tutorial

Full code, straight from the tutorial:
import { Ai } from '@cloudflare/ai'

export default {
async fetch(request, env, ctx) {
const ai = new Ai(env.AI)

const answer = await ai.run(
'@cf/meta/llama-2-7b-chat-int8',
{
inputs: [
{ role: 'user', content: `What is the square root of 9?` }
]
}
)

return new Response(JSON.stringify(answer))
}
}
import { Ai } from '@cloudflare/ai'

export default {
async fetch(request, env, ctx) {
const ai = new Ai(env.AI)

const answer = await ai.run(
'@cf/meta/llama-2-7b-chat-int8',
{
inputs: [
{ role: 'user', content: `What is the square root of 9?` }
]
}
)

return new Response(JSON.stringify(answer))
}
}
2 Replies
Unknown User
Unknown User15mo ago
Message Not Public
Sign In & Join Server To View
Łukasz
ŁukaszOP15mo ago
Ah, I was looking for some PR's/issues, thanks a bunch all good now, thanks a lot
Want results from more Discord servers?
Add your server