diff --git a/src/main.py b/src/main.py index 97fff07..387e203 100644 --- a/src/main.py +++ b/src/main.py @@ -78,7 +78,7 @@ async def handle_artifact(artifact_name: str): artifact_url = f"{task}/artifacts/{artifact_name}" artifact_data = await fetch_artifact(artifact_url) response = Response(artifact_data) - response.headers['Content-Disposition'] = f'attachment; filename="{artifact_name}.zip"' + response.headers['Content-Disposition'] = 'attachment; filename="GalacticFactory.zip"' return response def create_handle_artifact(artifact_name: str):