diff --git a/docs/introduction/tutorial-prompt-management/overview.mdx b/docs/introduction/tutorial-prompt-management/overview.mdx index 2cd437d99..f11a818bc 100644 --- a/docs/introduction/tutorial-prompt-management/overview.mdx +++ b/docs/introduction/tutorial-prompt-management/overview.mdx @@ -146,8 +146,8 @@ const pezzo = new Pezzo({ const openai = new PezzoOpenAI(pezzo); async function main() { - // Get the deployed "GenerateFacts" prompt version - const prompt = await pezzo.getPrompt("GenerateFacts"); + // Get the deployed "FactGenerator" prompt version + const prompt = await pezzo.getPrompt("FactGenerator"); // Call the OpenAI API, passing the prompt as an argument. You can override parameters if you wish. const response = await openai.chat.completions.create(prompt, {