forked from HamaWhiteGG/langchain-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cf2dd71
commit e24fdf7
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
37 changes: 37 additions & 0 deletions
37
langchain-core/src/test/java/com/hw/langchain/prompts/chat/ChatPromptTemplateTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
package com.hw.langchain.prompts.chat; | ||
|
||
import com.hw.langchain.schema.BaseMessage; | ||
import com.hw.langchain.schema.HumanMessage; | ||
import com.hw.langchain.schema.SystemMessage; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
|
||
|
||
/** | ||
* @author HamaWhite | ||
*/ | ||
class ChatPromptTemplateTest { | ||
|
||
@Test | ||
void testFormatMessages() { | ||
var template = "You are a helpful assistant that translates {input_language} to {output_language}."; | ||
var systemMessagePrompt = SystemMessagePromptTemplate.fromTemplate(template); | ||
|
||
var humanTemplate = "{text}"; | ||
var humanMessagePrompt = HumanMessagePromptTemplate.fromTemplate(humanTemplate); | ||
|
||
var chatPrompt = ChatPromptTemplate.fromMessages(List.of(systemMessagePrompt, humanMessagePrompt)); | ||
List<BaseMessage> actual = chatPrompt.formatMessages(Map.of("input_language", "English", | ||
"output_language", "French", | ||
"text", "I love programming.")); | ||
|
||
List<BaseMessage> expected = List.of( | ||
new SystemMessage("You are a helpful assistant that translates English to French."), | ||
new HumanMessage("I love programming.")); | ||
assertEquals(expected, actual); | ||
} | ||
} |