@@ -1033,3 +1033,61 @@ def test_tool_message_tool_call_id() -> None:
1033
1033
ToolMessage ("foo" , tool_call_id = uuid .uuid4 ())
1034
1034
ToolMessage ("foo" , tool_call_id = 1 )
1035
1035
ToolMessage ("foo" , tool_call_id = 1.0 )
1036
+
1037
+
1038
+ def test_message_text () -> None :
1039
+ # partitions:
1040
+ # message types: [ai], [human], [system], [tool]
1041
+ # content types: [str], [list[str]], [list[dict]], [list[str | dict]]
1042
+ # content: [empty], [single element], [multiple elements]
1043
+ # content dict types: [text], [not text], [no type]
1044
+
1045
+ assert HumanMessage (content = "foo" ).text () == "foo"
1046
+ assert AIMessage (content = []).text () == ""
1047
+ assert AIMessage (content = ["foo" , "bar" ]).text () == "foobar"
1048
+ assert (
1049
+ AIMessage (
1050
+ content = [
1051
+ {"type" : "text" , "text" : "<thinking>thinking...</thinking>" },
1052
+ {
1053
+ "type" : "tool_use" ,
1054
+ "id" : "toolu_01A09q90qw90lq917835lq9" ,
1055
+ "name" : "get_weather" ,
1056
+ "input" : {"location" : "San Francisco, CA" },
1057
+ },
1058
+ ]
1059
+ ).text ()
1060
+ == "<thinking>thinking...</thinking>"
1061
+ )
1062
+ assert (
1063
+ SystemMessage (content = [{"type" : "text" , "text" : "foo" }, "bar" ]).text ()
1064
+ == "foobar"
1065
+ )
1066
+ assert (
1067
+ ToolMessage (
1068
+ content = [
1069
+ {"type" : "text" , "text" : "15 degrees" },
1070
+ {
1071
+ "type" : "image" ,
1072
+ "source" : {
1073
+ "type" : "base64" ,
1074
+ "media_type" : "image/jpeg" ,
1075
+ "data" : "/9j/4AAQSkZJRg..." ,
1076
+ },
1077
+ },
1078
+ ],
1079
+ tool_call_id = "1" ,
1080
+ ).text ()
1081
+ == "15 degrees"
1082
+ )
1083
+ assert (
1084
+ AIMessage (content = [{"text" : "hi there" }, "hi" ]).text () == "hi"
1085
+ ) # missing type: text
1086
+ assert AIMessage (content = [{"type" : "nottext" , "text" : "hi" }]).text () == ""
1087
+ assert AIMessage (content = []).text () == ""
1088
+ assert (
1089
+ AIMessage (
1090
+ content = "" , tool_calls = [create_tool_call (name = "a" , args = {"b" : 1 }, id = None )]
1091
+ ).text ()
1092
+ == ""
1093
+ )
0 commit comments