Files
md-files/.claude/skills/integrate-atlas-chat/code/pyodide.ts
T
2026-05-31 20:25:41 +00:00

23 lines
567 B
TypeScript

/**
* Pyodide entry point — browser-based Python execution for Atlas agents.
*
* Import path: @cognite/dune-utils/atlas-agent/pyodide
*/
// Runtime
export {
PyodideRuntime,
getGlobalPyodideRuntime,
resetGlobalPyodideRuntime,
clearPyodideCache,
} from './pyodide-runtime';
export type { PyodideRuntimeConfig, PyodideSDKConfig, PyodideInstance } from './pyodide-runtime';
// React hook
export { usePyodideRuntime } from './pyodide-react';
export type {
PyodideProgress,
UsePyodideRuntimeOptions,
UsePyodideRuntimeReturn,
} from './pyodide-react';