Packages
kino_promptbuddy
0.0.1
PromptBuddy is a Livebook Smart Cell that allows pair programming with LLMs.
Current section
Files
Jump to
Current section
Files
lib/application.ex
defmodule KinoPromptBuddy.Application do
@moduledoc false
use Application
@impl true
def start(_type, _args) do
{:module, Kino.PromptBuddy} = Code.ensure_compiled(Kino.PromptBuddy)
Kino.SmartCell.register(Kino.PromptBuddy)
children = []
opts = [strategy: :one_for_one, name: KinoPromptBuddy.Supervisor]
Supervisor.start_link(children, opts)
end
end