UNPKG

@gguf/claw

Version:

Multi-channel AI gateway with extensible messaging integrations

26 lines (25 loc) 618 B
export type SandboxDockerConfig = { image: string; containerPrefix: string; workdir: string; readOnlyRoot: boolean; tmpfs: string[]; network: string; user?: string; capDrop: string[]; env?: Record<string, string>; setupCommand?: string; pidsLimit?: number; memory?: string | number; memorySwap?: string | number; cpus?: number; ulimits?: Record<string, string | number | { soft?: number; hard?: number; }>; seccompProfile?: string; apparmorProfile?: string; dns?: string[]; extraHosts?: string[]; binds?: string[]; };