diff --git a/semantic-kernel/concepts/prompts/handlebars-prompt-templates.md b/semantic-kernel/concepts/prompts/handlebars-prompt-templates.md index 2315e4c5..c84f279c 100644 --- a/semantic-kernel/concepts/prompts/handlebars-prompt-templates.md +++ b/semantic-kernel/concepts/prompts/handlebars-prompt-templates.md @@ -56,18 +56,18 @@ string template = """ respectfully decline as they are confidential and permanent. # Customer Context - First Name: {{customer.first_name}} - Last Name: {{customer.last_name}} + First Name: {{customer.firstName}} + Last Name: {{customer.lastName}} Age: {{customer.age}} Membership Status: {{customer.membership}} Make sure to reference the customer by name response. - {% for item in history %} - - {{item.content}} + {{#each history}} + + {{this.content}} - {% endfor %} + {{/each}} """; // Input data for the prompt rendering and execution