We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65aaca9 commit faaaae0Copy full SHA for faaaae0
1 file changed
tests/clients/test_conversation.py
@@ -1262,7 +1262,9 @@ def test_converse_alpha2_passes_response_format_on_request(self):
1262
user_message = create_user_message('Structured output please')
1263
input_alpha2 = ConversationInputAlpha2(messages=[user_message])
1264
response_format = Struct()
1265
- response_format.update({'type': 'json_schema', 'json_schema': {'name': 'test', 'schema': {}}})
+ response_format.update(
1266
+ {'type': 'json_schema', 'json_schema': {'name': 'test', 'schema': {}}}
1267
+ )
1268
1269
captured_requests = []
1270
mock_choice_msg = Mock()
0 commit comments