We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57c5840 commit 7b3d0c3Copy full SHA for 7b3d0c3
1 file changed
dataikuapi/dss/ml.py
@@ -1811,10 +1811,10 @@ def download_documentation_stream(self, export_id):
1811
"""
1812
if self.mltask is not None:
1813
return self.mltask.client._perform_raw(
1814
- "GET", "/projects/%s/models/lab/download-documentation/%s" % (self.mltask.project_key, export_id))
+ "GET", "/projects/%s/models/lab/documentations/%s" % (self.mltask.project_key, export_id))
1815
else:
1816
return self.saved_model.client._perform_raw(
1817
- "GET", "/projects/%s/savedmodels/download-documentation/%s" % (self.saved_model.project_key, export_id))
+ "GET", "/projects/%s/savedmodels/documentations/%s" % (self.saved_model.project_key, export_id))
1818
1819
def download_documentation_to_file(self, export_id, path):
1820
0 commit comments