From fd738fa4cd0ef1e1de4e1d68030741abf151be12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonatan=20K=C5=82osko?= Date: Fri, 26 Jul 2024 17:37:09 +0700 Subject: [PATCH] Add FLAME runner cell to built-in definitions --- lib/livebook/runtime/definitions.ex | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/lib/livebook/runtime/definitions.ex b/lib/livebook/runtime/definitions.ex index 943bf76ee..b8c642df3 100644 --- a/lib/livebook/runtime/definitions.ex +++ b/lib/livebook/runtime/definitions.ex @@ -55,6 +55,11 @@ defmodule Livebook.Runtime.Definitions do dependency: %{dep: {:kino_explorer, "~> 0.1.20"}, config: []} } + kino_flame = %{ + name: "kino_flame", + dependency: %{dep: {:kino_flame, "~> 0.1.0"}, config: []} + } + jason = %{ name: "jason", dependency: %{dep: {:jason, "~> 1.4"}, config: []} @@ -202,6 +207,16 @@ defmodule Livebook.Runtime.Definitions do packages: [kino] } ] + }, + %{ + kind: "Elixir.KinoFLAME.RunnerCell", + name: "FLAME runner cell", + requirement_presets: [ + %{ + name: "Default", + packages: [kino_flame] + } + ] } ]