mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-29 03:44:28 +01:00
12 lines
180 B
Python
12 lines
180 B
Python
import subprocess
|
|
|
|
if __name__ == "__main__":
|
|
command = [
|
|
"poetry",
|
|
"run",
|
|
"python",
|
|
"-m",
|
|
"autogpt",
|
|
]
|
|
subprocess.run(command)
|