cloudflare/cloudflare-typescript

Public

mirrored fromhttps://github.com/cloudflare/cloudflare-typescriptAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v5.2.0

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

examples/ai/demo.ts

16lines · modecode

1#!/usr/bin/env -S npm run tsn -T
2
3import Cloudflare from 'cloudflare';
4
5// gets API Key from environment variable CLOUDFLARE_API_KEY & CLOUDFLARE_EMAIL
6const client = new Cloudflare();
7
8async 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
16main();
17