Skip to content

Type Alias: SpawnRequest

Makaio Framework


Makaio Framework / services-core / SpawnRequest

SpawnRequest = z.infer<typeof SpawnRequestSchema>

Defined in: ../../../packages/services/core/src/execution-target/container-schemas.ts:71

  • SpawnRequest
    • z.infer<typeof SpawnRequestSchema>
      • typeof SpawnRequestSchema
type SpawnRequest = {
sessionId: string;
adapter: string;
runtime: 'full' | 'simple';
mode: 'container-local' | 'container-isolated';
image?: string | undefined;
env?: Record<string, string> | undefined;
};