This commit is contained in:
Ole
2026-05-31 20:25:41 +00:00
commit 0a07ab8593
275 changed files with 52660 additions and 0 deletions
@@ -0,0 +1,22 @@
/**
* 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';