From eef79e7618b927af851b7143d9790621b256dec7 Mon Sep 17 00:00:00 2001 From: Peter Friese Date: Sun, 12 May 2024 15:21:44 +0200 Subject: [PATCH] Replace template variable with actual model name --- docs/get-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/get-started.md b/docs/get-started.md index c138e1708b..9a0f6e41be 100644 --- a/docs/get-started.md +++ b/docs/get-started.md @@ -89,7 +89,7 @@ Node.js 18 or later. async (subject) => { const llmResponse = await generate({ prompt: `Suggest an item for the menu of a {subject} themed restaurant`, - model: $GENKIT_MODEL, + model: geminiPro, config: { temperature: 1, },