From cc951a9a393f17cf555629e3bf1b1bd1859a63f7 Mon Sep 17 00:00:00 2001 From: Yogananda Muthaiah Date: Sun, 1 Dec 2024 09:53:18 +0100 Subject: [PATCH] Update chapter11.md --- chapter11.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/chapter11.md b/chapter11.md index 8b13789..c07618a 100644 --- a/chapter11.md +++ b/chapter11.md @@ -1 +1,20 @@ +## Chapter 11: Multilingual Support +You can use LangChain to build multilingual applications. +``` +from langchain.chat_models import ChatOpenAI +from langchain.schema import HumanMessage, SystemMessage + +chat = ChatOpenAI(temperature=0) + +messages = [ + SystemMessage(content="You are a helpful assistant that translates English to Japanese."), + HumanMessage(content="Translate the following English text to German: 'Hello, how are you?'") +] + +print(chat(messages).content) + +messages.append(HumanMessage(content="Now translate this to French: 'I love programming'")) + +print(chat(messages).content) +```