Data transform cell (#1758)

This commit is contained in:
Cristine Guadelupe 2023-03-08 15:38:34 +07:00 committed by GitHub
parent 508862dda6
commit 0f84c4d244
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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]
}
]
}
}
]