modal backend working ok, merged in modal-integrations

This commit is contained in:
Shannon Sands 2026-02-08 23:48:01 +00:00
parent 0bc914b00c
commit 6be8cdeeca
5 changed files with 187 additions and 81 deletions

View file

@ -10,7 +10,10 @@ from ..slots.executor import ExecutionResult
from ..slots.slot import Slot, SlotState
from .base import ToolBackend
import yaml
try:
import yaml
except ImportError:
yaml = None # type: ignore[assignment]
@dataclass
class ModalSandboxConfig: