cloudflare/cloudflare-typescript
Publicmirrored fromhttps://github.com/cloudflare/cloudflare-typescriptAvailable
examples/ai/demo.ts
16lines · modecode
| 1 | #!/usr/bin/env -S npm run tsn -T |
| 2 | |
| 3 | import Cloudflare from 'cloudflare'; |
| 4 | |
| 5 | // gets API Key from environment variable CLOUDFLARE_API_KEY & CLOUDFLARE_EMAIL |
| 6 | const client = new Cloudflare(); |
| 7 | |
| 8 | async function main() { |
| 9 | const response = await client.ai.run('@cf/meta/llama-2-7b-chat-int8', { |
| 10 | account_id: process.env['CLOUDFLARE_ACCOUNT_ID']!, |
| 11 | prompt: 'Tell me about Workers AI', |
| 12 | }); |
| 13 | console.log(response); |
| 14 | } |
| 15 | |
| 16 | main(); |
| 17 | |