@@ -276,15 +276,15 @@ You can also directly stream the output into a file, and unzip it afterwards::
276276
277277Or, you can also use the underlying response iterator directly::
278278
279- artifact_bytes_iterator = build_or_job.artifacts(streamed =True, action='iterator' )
279+ artifact_bytes_iterator = build_or_job.artifacts(iterator =True)
280280
281281This can be used with frameworks that expect an iterator (such as FastAPI/Starlette's
282282``StreamingResponse ``) to forward a download from GitLab without having to download
283283the entire content server-side first::
284284
285285 @app.get("/download_artifact")
286286 def download_artifact():
287- artifact_bytes_iterator = build_or_job.artifacts(streamed =True, action='iterator' )
287+ artifact_bytes_iterator = build_or_job.artifacts(iterator =True)
288288 return StreamingResponse(artifact_bytes_iterator, media_type="application/zip")
289289
290290Delete all artifacts of a project that can be deleted::