From 2c7297d243992d74317fee102dc64cffe7f57bf5 Mon Sep 17 00:00:00 2001 From: Hiroshige Umino Date: Thu, 10 Aug 2023 23:39:01 +0900 Subject: [PATCH] Fix a broken code block display (#9034) - Description: Fix a broken code block in this page: https://python.langchain.com/docs/modules/model_io/prompts/prompt_templates/ - Issue: N/A - Dependencies: None - Tag maintainer: @baskaryan - Twitter handle: yaotti --- .../modules/model_io/prompts/prompt_templates/get_started.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/snippets/modules/model_io/prompts/prompt_templates/get_started.mdx b/docs/snippets/modules/model_io/prompts/prompt_templates/get_started.mdx index d8a234d4da..dddaf86f41 100644 --- a/docs/snippets/modules/model_io/prompts/prompt_templates/get_started.mdx +++ b/docs/snippets/modules/model_io/prompts/prompt_templates/get_started.mdx @@ -106,9 +106,11 @@ llm(template.format_messages(text='i dont like eating tasty things.')) ``` + ``` AIMessage(content='I absolutely adore indulging in delicious treats!', additional_kwargs={}, example=False) ``` + This provides you with a lot of flexibility in how you construct your chat prompts.