forked from microsoft/generative-ai-with-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
61 lines (43 loc) · 1.39 KB
/
app.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import { OpenAI } from "openai";
import readline from "readline";
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
const question = (query) => {
return new Promise((resolve) => {
rl.question(query, (answer) => {
resolve(answer);
});
});
};
const height = await question("Enter the current height above the ground in meters:");
const speed = await question("Enter the speed at which you're moving forward in meters per second:");
const gravity = await question("Enter the gravity in meters per second squared:");
const wind = await question("Enter the wind speed upwards in meters per second:");
// Distance to the hill
const distance = 100;
// Create prompt including inputs should include chain of thought
const prompt = "TODO";
// Call the language model with the prompt
const messages = [
{
"role": "user",
"content": prompt
}];
// 2. Create client
// -----------------------------------
const openai = new OpenAI({
baseURL: "https://models.inference.ai.azure.com",
apiKey: process.env.GITHUB_TOKEN,
});
// 3. Send the request
// -----------------------------------
const completion = await openai.chat.completions.create({
model: 'gpt-4o-mini',
messages: messages,
});
console.log(`Answer for "${prompt}":`);
// 4. Print the answer
// -----------------------------------
console.log(completion.choices[0]?.message?.content);