mcard-js
Version:
MCard - Content-addressable storage with cryptographic hashing, handle resolution, and vector search for Node.js and browsers
14 lines • 431 B
TypeScript
/**
* Python runtime executor.
*
* Executes Python code via subprocess with automatic entry point detection.
*/
import { Runtime } from './base.js';
export declare class PythonRuntime implements Runtime {
execute(code: string, context: unknown, config: any): Promise<unknown>;
/**
* Create Python wrapper script with entry point invocation.
*/
private createWrapper;
}
//# sourceMappingURL=python.d.ts.map