// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { ClientOptions } from '@honcho-ai/core'; export type WorkerInput = { project_name: string; code: string; client_opts: ClientOptions; }; export type WorkerOutput = { is_error: boolean; result: unknown | null; log_lines: string[]; err_lines: string[]; };