Skip to content

Commit a9682cb

Browse files
committedMar 19, 2024·
Fix analyze API endpoint
1 parent faa21e3 commit a9682cb

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed
 

‎cloudinary/api.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -857,6 +857,6 @@ def analyze(input_type, analysis_type, uri=None, **options):
857857
858858
:rtype: Response
859859
"""
860-
api_uri = ['analysis', 'analyze']
861-
params = {'input_type': input_type, 'analysis_type': analysis_type, 'uri': uri}
860+
api_uri = ['analysis', 'analyze', input_type]
861+
params = {'analysis_type': analysis_type, 'uri': uri, 'parameters': options.get("parameters")}
862862
return _call_v2_api('post', api_uri, params, **options)

‎test/test_api.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -1216,16 +1216,15 @@ def test_analyze(self, mocker):
12161216
mocker.return_value = MOCK_RESPONSE
12171217

12181218
options = {
1219-
"input_type": "uri",
12201219
"analysis_type": "captioning",
12211220
"uri": "https://res.cloudinary.com/demo/image/upload/dog",
12221221
}
12231222

1224-
api.analyze(**options)
1223+
api.analyze(input_type="uri", **options)
12251224

12261225
uri = get_uri(mocker)
12271226
self.assertIn("/v2/", uri)
1228-
self.assertTrue(uri.endswith("/analysis/analyze"))
1227+
self.assertTrue(uri.endswith("/analysis/analyze/uri"))
12291228

12301229
params = get_json_body(mocker)
12311230
for param in options.keys():

0 commit comments

Comments
 (0)
Please sign in to comment.