forked from github/codespaces-models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstreaming.js
30 lines (23 loc) · 868 Bytes
/
streaming.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import OpenAI from "openai";
const token = process.env["GITHUB_TOKEN"];
const endpoint = "https://models.inference.ai.azure.com";
/* Pick one of the Azure OpenAI models from the GitHub Models service */
const modelName = "gpt-4o-mini";
export async function main() {
const client = new OpenAI({ baseURL: endpoint, apiKey: token });
const stream = await client.chat.completions.create({
messages: [
{ role: "system", content: "You are a helpful assistant." },
{ role: "user", content: "Give me 5 good reasons why I should exercise every day." },
],
model: modelName,
stream: true
});
for await (const part of stream) {
process.stdout.write(part.choices[0]?.delta?.content || '');
}
process.stdout.write('\n');
}
main().catch((err) => {
console.error("The sample encountered an error:", err);
});