Added missing " in CHAT_PROMPT_TEMPLATE (#23287)

This commit is contained in:
Federico Galatolo 2023-05-11 12:45:32 +02:00 committed by GitHub
parent e1eb3efd02
commit dee673232b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ Human: It worked! Can you translate the summary in German?
Assistant: I will use the tool `translator` to translate the text in German.
```py
translated_summary = translator(summarized_text, src_lang="English", tgt_lang="German)
translated_summary = translator(summarized_text, src_lang="English", tgt_lang="German")
```
====