Vitalis_LFM2.5_Cortex.GGUF / src /exec /action_executor.py
FerrellSyntheticIntelligence's picture
Upload folder using huggingface_hub
d2a5f5a verified
Raw
History Blame Contribute Delete
171 Bytes
#!/usr/bin/env python3
import subprocess
class ActionExecutor:
def run(self, cmd: str):
return subprocess.run(cmd, shell=True, capture_output=True, text=True)