mirror of
https://github.com/Mintplex-Labs/langchain-python.git
synced 2026-07-19 21:33:31 -04:00
27 lines
903 B
Python
27 lines
903 B
Python
"""Wrapper around subprocess to run commands."""
|
|
import subprocess
|
|
from typing import List, Union
|
|
|
|
|
|
class BashProcess:
|
|
"""Executes bash commands and returns the output."""
|
|
|
|
def __init__(self, strip_newlines: bool = False):
|
|
"""Initialize with stripping newlines."""
|
|
self.strip_newlines = strip_newlines
|
|
|
|
def run(self, commands: Union[str, List[str]]) -> str:
|
|
"""Run commands and return final output."""
|
|
outputs = []
|
|
if isinstance(commands, str):
|
|
commands = [commands]
|
|
for command in commands:
|
|
try:
|
|
output = subprocess.check_output(command, shell=True).decode()
|
|
if self.strip_newlines:
|
|
output = output.strip()
|
|
outputs.append(output)
|
|
except subprocess.CalledProcessError as error:
|
|
return str(error)
|
|
return outputs[-1]
|