Skip to content

Commit

Permalink
micromamba support
Browse files Browse the repository at this point in the history
  • Loading branch information
antonkulaga committed Oct 22, 2024
1 parent c326ef8 commit fd0e091
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions llm_sandbox/micromamba.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
from typing import Optional
import docker
from llm_sandbox.session import SandboxDockerSession
from llm_sandbox.docker import ConsoleOutput
from llm_sandbox.const import SupportedLanguage

class MicromambaSession(SandboxDockerSession):
"""
SandboxDockerSession does not allow activation of micromamba environment,
this class extends it and allows that which makes it possible for LLM agents to installed conda dependencies.
"""

def __init__(self, client: Optional[docker.DockerClient] = None,
image: Optional[str] = None,
dockerfile: Optional[str] = "mambaorg/micromamba:latest",
lang: str = SupportedLanguage.PYTHON,
keep_template: bool = False,
verbose: bool = False, environment: str = "base"):
super().__init__(client=client,
image=image,
dockerfile=dockerfile,
lang=lang,
keep_template=keep_template,
verbose=verbose)
self.environment = environment


def execute_command(
self, command: Optional[str], workdir: Optional[str] = None
) -> ConsoleOutput:
if not command:
raise ValueError("Command cannot be empty")

if not self.container:
raise RuntimeError(
"Session is not open. Please call open() method before executing commands."
)
command = f"micromamba run -n {self.environment} {command}"

if self.verbose:
print(f"Executing command: {command}")

if workdir:
exit_code, exec_log = self.container.exec_run(
command, stream=True, tty=True, workdir=workdir
)
else:
exit_code, exec_log = self.container.exec_run(
command, stream=True, tty=True
)

output = ""
if self.verbose:
print("Output:", end=" ")

for chunk in exec_log:
chunk_str = chunk.decode("utf-8")
output += chunk_str
if self.verbose:
print(chunk_str, end="")

return ConsoleOutput(output)

0 comments on commit fd0e091

Please sign in to comment.