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
This commit is contained in:
Hiroshige Umino 2023-08-10 23:39:01 +09:00 committed by GitHub
parent 434a96415b
commit 2c7297d243
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -106,9 +106,11 @@ llm(template.format_messages(text='i dont like eating tasty things.'))
``` ```
<CodeOutputBlock lang="python"> <CodeOutputBlock lang="python">
``` ```
AIMessage(content='I absolutely adore indulging in delicious treats!', additional_kwargs={}, example=False) AIMessage(content='I absolutely adore indulging in delicious treats!', additional_kwargs={}, example=False)
``` ```
</CodeOutputBlock> </CodeOutputBlock>
This provides you with a lot of flexibility in how you construct your chat prompts. This provides you with a lot of flexibility in how you construct your chat prompts.