Spaces:
Runtime error
Runtime error
File size: 368 Bytes
b6a1e5a 512e397 b6a1e5a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import subprocess
# Gantilah "app.py" dengan nama berkas aplikasi Python Anda
python_script = "entry_with_update.py"
# Argument yang ingin Anda tambahkan
additional_arguments = ["--always-cpu", "--attention-split"]
# Gabungkan semua argumen
command = ["python", python_script] + additional_arguments
# Jalankan skrip menggunakan subprocess
subprocess.run(command)
|