The Execute Code, Execute Function and Execute Tool endpoints are all backed by a set of runtime engines. Every time you run code, it runs using exactly one of these engines. Unless you’ve created a Custom Runtime, your code runs using the default WASI engine. When you create a custom runtime, the flags on your account determine which engine the custom runtime uses.Documentation Index
Fetch the complete documentation index at: https://docs.riza.io/llms.txt
Use this file to discover all available pages before exploring further.
WASI
The default runtime engine is WASI, which is a server-side interface for WebAssembly. This engine is extremely performant but has some limitations, notably limited support for third-party dependencies.V8
When you run code in a Custom Runtime for Python or JavaScript, by default that code runs using our V8 runtime engine. This engine is more flexible than WASI but isn’t quite as fast for Python.microVM (deprecated)
The microVM runtime engine is deprecated. We recommend migrating to the V8 engine for improved performance and continued support.
For more information about this deprecation and migration guidance, see our
blog post.