3fbbd7970c
Code Quality / Python Lint & Format (push) Has been cancelled
Code Quality / Python Tests (push) Has been cancelled
Code Quality / JavaScript/TypeScript Lint (advisory) (push) Has been cancelled
Security Scan / CodeQL Analysis (python) (push) Has been cancelled
Security Scan / Dependency Review (push) Has been cancelled
Security Scan / CodeQL Analysis (javascript-typescript) (push) Has been cancelled
90 lines
2.7 KiB
JavaScript
90 lines
2.7 KiB
JavaScript
import ModelClient from "@azure-rest/ai-inference";
|
|
import { AzureKeyCredential } from "@azure/core-auth";
|
|
|
|
// SECURITY: Validate required environment variables
|
|
// Get these from your Microsoft Foundry project's "Overview" page
|
|
// (GitHub Models is retiring end of July 2026 - see https://ai.azure.com/catalog/models)
|
|
const token = process.env["AZURE_INFERENCE_CREDENTIAL"];
|
|
if (!token) {
|
|
throw new Error("AZURE_INFERENCE_CREDENTIAL environment variable is required. Please set it before running this application.");
|
|
}
|
|
|
|
const endpoint = process.env["AZURE_INFERENCE_ENDPOINT"];
|
|
if (!endpoint) {
|
|
throw new Error("AZURE_INFERENCE_ENDPOINT environment variable is required. Please set it before running this application.");
|
|
}
|
|
const modelName = "gpt-4o-mini";
|
|
|
|
export async function main() {
|
|
|
|
console.log("== Recipe Recommendation App ==");
|
|
|
|
console.log("Number of recipes: (for example: 5): ");
|
|
const numRecipes = "3";
|
|
|
|
console.log("List of ingredients: (for example: chicken, potatoes, and carrots): ");
|
|
const ingredients = "chocolate";
|
|
|
|
console.log("Filter (for example: vegetarian, vegan, or gluten-free): ");
|
|
const filter = "peanuts";
|
|
|
|
const promptText = `Show me ${numRecipes} recipes for a dish with the following ingredients: ${ingredients}. Per recipe, list all the ingredients used, no ${filter}: `;
|
|
|
|
|
|
const client = new ModelClient(endpoint, new AzureKeyCredential(token));
|
|
|
|
const response = await client.path("/chat/completions").post({
|
|
body: {
|
|
messages: [
|
|
{ role: "system", content: "You are a helpful assistant." },
|
|
{ role: "user", content: promptText }
|
|
],
|
|
model: modelName,
|
|
temperature: 1.0,
|
|
max_tokens: 1000,
|
|
top_p: 1.0
|
|
}
|
|
});
|
|
|
|
try {
|
|
|
|
|
|
if (response.status !== "200") {
|
|
throw response.body.error;
|
|
}
|
|
console.log(response.body.choices[0].message.content);
|
|
|
|
|
|
const oldPromptResult = response.body.choices[0].message.content;
|
|
|
|
const promptShoppingList = 'Produce a shopping list, and please do not include the following ingredients that I already have at home: ';
|
|
|
|
const newPrompt = `Given ingredients at home: ${ingredients} and these generated recipes: ${oldPromptResult}, ${promptShoppingList}`;
|
|
|
|
const shoppingListMessage =
|
|
await client.path("/chat/completions").post({
|
|
body: {
|
|
messages: [
|
|
{
|
|
role: 'system',
|
|
content: 'Here is your shopping list:'
|
|
},
|
|
{
|
|
role: 'user',
|
|
content: newPrompt
|
|
},
|
|
],
|
|
model: modelName,
|
|
}
|
|
|
|
})
|
|
|
|
} catch (error) {
|
|
console.log('The sample encountered an error: ', error);
|
|
}
|
|
}
|
|
|
|
|
|
main().catch((err) => {
|
|
console.error("The sample encountered an error:", err);
|
|
}); |