diff --git a/lib/livebook/runtime/elixir_standalone.ex b/lib/livebook/runtime/elixir_standalone.ex index 649a5ceb7..77414c17e 100644 --- a/lib/livebook/runtime/elixir_standalone.ex +++ b/lib/livebook/runtime/elixir_standalone.ex @@ -52,6 +52,11 @@ defmodule Livebook.Runtime.ElixirStandalone do dependency: %{dep: {:torchx, "~> 0.4.1"}, config: [nx: [default_backend: Torchx.Backend]]} } + kino_explorer = %{ + name: "kino_explorer", + dependency: %{dep: {:kino_explorer, "~> 0.1.0"}, config: []} + } + windows? = match?({:win32, _}, :os.type()) nx_backend_package = if(windows?, do: torchx, else: exla) @@ -164,6 +169,18 @@ defmodule Livebook.Runtime.ElixirStandalone do } ] } + }, + %{ + kind: "Elixir.KinoExplorer.DataTransformCell", + name: "Data transform", + requirement: %{ + variants: [ + %{ + name: "Default", + packages: [kino_explorer] + } + ] + } } ]