8
8
9
9
class Location (BaseModel ):
10
10
city : str
11
- state : str = Field (description = "The two letter abbreviation" )
11
+ state : str = Field (description = "The two letter abbreviation for the state " )
12
12
13
13
14
14
@pytest .mark .flaky (max_runs = 2 )
@@ -17,45 +17,45 @@ def test_ny(self):
17
17
img = marvin .beta .Image (
18
18
"https://images.unsplash.com/photo-1568515387631-8b650bbcdb90"
19
19
)
20
- result = marvin .beta .extract (img , target = Location )
21
- assert result in (
22
- [ Location ( city = "New York" , state = "NY" )],
23
- [ Location ( city = "New York City" , state = "NY" )],
24
- )
20
+ locations = marvin .beta .extract (img , target = Location )
21
+ assert len ( locations ) == 1
22
+ location = locations [ 0 ]
23
+ assert location . city . startswith ( "New York" ) or location . city == "Manhattan"
24
+ assert location . state == "NY"
25
25
26
26
def test_ny_images_input (self ):
27
27
img = marvin .beta .Image (
28
28
"https://images.unsplash.com/photo-1568515387631-8b650bbcdb90"
29
29
)
30
- result = marvin .beta .extract (data = None , images = [img ], target = Location )
31
- assert result in (
32
- [ Location ( city = "New York" , state = "NY" )],
33
- [ Location ( city = "New York City" , state = "NY" )],
34
- )
30
+ locations = marvin .beta .extract (data = None , images = [img ], target = Location )
31
+ assert len ( locations ) == 1
32
+ location = locations [ 0 ]
33
+ assert location . city . startswith ( "New York" ) or location . city == "Manhattan"
34
+ assert location . state == "NY"
35
35
36
36
def test_ny_image_input (self ):
37
37
img = marvin .beta .Image (
38
38
"https://images.unsplash.com/photo-1568515387631-8b650bbcdb90"
39
39
)
40
- result = marvin .beta .extract (data = img , target = Location )
41
- assert result in (
42
- [ Location ( city = "New York" , state = "NY" )],
43
- [ Location ( city = "New York City" , state = "NY" )],
44
- )
40
+ locations = marvin .beta .extract (data = img , target = Location )
41
+ assert len ( locations ) == 1
42
+ location = locations [ 0 ]
43
+ assert location . city . startswith ( "New York" ) or location . city == "Manhattan"
44
+ assert location . state == "NY"
45
45
46
46
def test_ny_image_and_text (self ):
47
47
img = marvin .beta .Image (
48
48
"https://images.unsplash.com/photo-1568515387631-8b650bbcdb90"
49
49
)
50
- result = marvin .beta .extract (
50
+ locations = marvin .beta .extract (
51
51
data = "I see the empire state building" ,
52
52
images = [img ],
53
53
target = Location ,
54
54
)
55
- assert result in (
56
- [ Location ( city = "New York" , state = "NY" )],
57
- [ Location ( city = "New York City" , state = "NY" )],
58
- )
55
+ assert len ( locations ) == 1
56
+ location = locations [ 0 ]
57
+ assert location . city . startswith ( "New York" ) or location . city == "Manhattan"
58
+ assert location . state == "NY"
59
59
60
60
@pytest .mark .flaky (max_runs = 3 )
61
61
def test_dog (self ):
@@ -90,11 +90,11 @@ async def test_ny(self):
90
90
img = marvin .beta .Image (
91
91
"https://images.unsplash.com/photo-1568515387631-8b650bbcdb90"
92
92
)
93
- result = await marvin .beta .extract_async (img , target = Location )
94
- assert result in (
95
- [ Location ( city = "New York" , state = "NY" )],
96
- [ Location ( city = "New York City" , state = "NY" )],
97
- )
93
+ locations = await marvin .beta .extract_async (img , target = Location )
94
+ assert len ( locations ) == 1
95
+ location = locations [ 0 ]
96
+ assert location . city . startswith ( "New York" ) or location . city == "Manhattan"
97
+ assert location . state == "NY"
98
98
99
99
100
100
class TestMapping :
@@ -105,16 +105,15 @@ def test_map(self):
105
105
dc = marvin .beta .Image (
106
106
"https://images.unsplash.com/photo-1617581629397-a72507c3de9e"
107
107
)
108
- result = marvin .beta .extract .map ([ny , dc ], target = Location )
109
- assert isinstance (result , list )
110
- assert result [0 ][0 ] in (
111
- Location (city = "New York" , state = "NY" ),
112
- Location (city = "New York City" , state = "NY" ),
113
- )
114
- assert result [1 ][0 ] in (
115
- Location (city = "Washington" , state = "DC" ),
116
- Location (city = "Washington" , state = "D.C." ),
117
- )
108
+ locations = marvin .beta .extract .map ([ny , dc ], target = Location )
109
+ assert len (locations ) == 2
110
+ ny_location , dc_location = locations
111
+
112
+ assert ny_location [0 ].city .startswith ("New York" )
113
+ assert ny_location [0 ].state == "NY"
114
+
115
+ assert dc_location [0 ].city == "Washington"
116
+ assert dc_location [0 ].state .index ("D" ) < dc_location [0 ].state .index ("C" )
118
117
119
118
async def test_async_map (self ):
120
119
ny = marvin .beta .Image (
@@ -123,13 +122,12 @@ async def test_async_map(self):
123
122
dc = marvin .beta .Image (
124
123
"https://images.unsplash.com/photo-1617581629397-a72507c3de9e"
125
124
)
126
- result = await marvin .beta .extract_async .map ([ny , dc ], target = Location )
127
- assert isinstance (result , list )
128
- assert result [0 ][0 ] in (
129
- Location (city = "New York" , state = "NY" ),
130
- Location (city = "New York City" , state = "NY" ),
131
- )
132
- assert result [1 ][0 ] in (
133
- Location (city = "Washington" , state = "DC" ),
134
- Location (city = "Washington" , state = "D.C." ),
135
- )
125
+ locations = await marvin .beta .extract_async .map ([ny , dc ], target = Location )
126
+ assert len (locations ) == 2
127
+ ny_location , dc_location = locations
128
+
129
+ assert ny_location [0 ].city .startswith ("New York" )
130
+ assert ny_location [0 ].state == "NY"
131
+
132
+ assert dc_location [0 ].city == "Washington"
133
+ assert dc_location [0 ].state .index ("D" ) < dc_location [0 ].state .index ("C" )
0 commit comments