@@ -120,7 +120,7 @@ def test_method_create(self, client: PromptFoundry) -> None:
120
120
},
121
121
],
122
122
prompt_id = "string" ,
123
- variables = {"foo" : {} },
123
+ variables = {"foo" : "string" },
124
124
)
125
125
assert_matches_type (Evaluation , evaluation , path = ["response" ])
126
126
@@ -223,7 +223,7 @@ def test_raw_response_create(self, client: PromptFoundry) -> None:
223
223
},
224
224
],
225
225
prompt_id = "string" ,
226
- variables = {"foo" : {} },
226
+ variables = {"foo" : "string" },
227
227
)
228
228
229
229
assert response .is_closed is True
@@ -330,7 +330,7 @@ def test_streaming_response_create(self, client: PromptFoundry) -> None:
330
330
},
331
331
],
332
332
prompt_id = "string" ,
333
- variables = {"foo" : {} },
333
+ variables = {"foo" : "string" },
334
334
) as response :
335
335
assert not response .is_closed
336
336
assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
@@ -440,7 +440,7 @@ def test_method_update(self, client: PromptFoundry) -> None:
440
440
},
441
441
],
442
442
prompt_id = "string" ,
443
- variables = {"foo" : {} },
443
+ variables = {"foo" : "string" },
444
444
)
445
445
assert_matches_type (Evaluation , evaluation , path = ["response" ])
446
446
@@ -544,7 +544,7 @@ def test_raw_response_update(self, client: PromptFoundry) -> None:
544
544
},
545
545
],
546
546
prompt_id = "string" ,
547
- variables = {"foo" : {} },
547
+ variables = {"foo" : "string" },
548
548
)
549
549
550
550
assert response .is_closed is True
@@ -652,7 +652,7 @@ def test_streaming_response_update(self, client: PromptFoundry) -> None:
652
652
},
653
653
],
654
654
prompt_id = "string" ,
655
- variables = {"foo" : {} },
655
+ variables = {"foo" : "string" },
656
656
) as response :
657
657
assert not response .is_closed
658
658
assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
@@ -763,7 +763,7 @@ def test_path_params_update(self, client: PromptFoundry) -> None:
763
763
},
764
764
],
765
765
prompt_id = "string" ,
766
- variables = {"foo" : {} },
766
+ variables = {"foo" : "string" },
767
767
)
768
768
769
769
@parametrize
@@ -970,7 +970,7 @@ async def test_method_create(self, async_client: AsyncPromptFoundry) -> None:
970
970
},
971
971
],
972
972
prompt_id = "string" ,
973
- variables = {"foo" : {} },
973
+ variables = {"foo" : "string" },
974
974
)
975
975
assert_matches_type (Evaluation , evaluation , path = ["response" ])
976
976
@@ -1073,7 +1073,7 @@ async def test_raw_response_create(self, async_client: AsyncPromptFoundry) -> No
1073
1073
},
1074
1074
],
1075
1075
prompt_id = "string" ,
1076
- variables = {"foo" : {} },
1076
+ variables = {"foo" : "string" },
1077
1077
)
1078
1078
1079
1079
assert response .is_closed is True
@@ -1180,7 +1180,7 @@ async def test_streaming_response_create(self, async_client: AsyncPromptFoundry)
1180
1180
},
1181
1181
],
1182
1182
prompt_id = "string" ,
1183
- variables = {"foo" : {} },
1183
+ variables = {"foo" : "string" },
1184
1184
) as response :
1185
1185
assert not response .is_closed
1186
1186
assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
@@ -1290,7 +1290,7 @@ async def test_method_update(self, async_client: AsyncPromptFoundry) -> None:
1290
1290
},
1291
1291
],
1292
1292
prompt_id = "string" ,
1293
- variables = {"foo" : {} },
1293
+ variables = {"foo" : "string" },
1294
1294
)
1295
1295
assert_matches_type (Evaluation , evaluation , path = ["response" ])
1296
1296
@@ -1394,7 +1394,7 @@ async def test_raw_response_update(self, async_client: AsyncPromptFoundry) -> No
1394
1394
},
1395
1395
],
1396
1396
prompt_id = "string" ,
1397
- variables = {"foo" : {} },
1397
+ variables = {"foo" : "string" },
1398
1398
)
1399
1399
1400
1400
assert response .is_closed is True
@@ -1502,7 +1502,7 @@ async def test_streaming_response_update(self, async_client: AsyncPromptFoundry)
1502
1502
},
1503
1503
],
1504
1504
prompt_id = "string" ,
1505
- variables = {"foo" : {} },
1505
+ variables = {"foo" : "string" },
1506
1506
) as response :
1507
1507
assert not response .is_closed
1508
1508
assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
@@ -1613,7 +1613,7 @@ async def test_path_params_update(self, async_client: AsyncPromptFoundry) -> Non
1613
1613
},
1614
1614
],
1615
1615
prompt_id = "string" ,
1616
- variables = {"foo" : {} },
1616
+ variables = {"foo" : "string" },
1617
1617
)
1618
1618
1619
1619
@parametrize
0 commit comments