-
Notifications
You must be signed in to change notification settings - Fork 447
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remote cell definition #2197
Remote cell definition #2197
Conversation
Uffizzi Preview |
lib/livebook/runtime/definitions.ex
Outdated
packages: [ | ||
%{ | ||
name: "kino", | ||
dependency: %{dep: {:kino, github: "livebook-dev/kino", branch: "main"}, config: []} | ||
} | ||
] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
packages: [ | |
%{ | |
name: "kino", | |
dependency: %{dep: {:kino, github: "livebook-dev/kino", branch: "main"}, config: []} | |
} | |
] | |
packages: [kino] |
You can change
dependency: %{dep: {:kino, "~> 0.10.0"}, config: []} |
{:kino, github: "livebook-dev/kino", override: true}
lib/livebook/runtime/definitions.ex
Outdated
}, | ||
%{ | ||
kind: "Elixir.Kino.RemoteCell", | ||
name: "Remote cell", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Other options: "Remote node", "Remote execution", "Remote procedure call", "Distributed Elixir".
The last one may be the most clear one.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like "Remote execution".
Whatever we pick, we should mirror the name in kino :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Beautiful, let’s also change the name on Kino!
We don't add cell to the name, but in this case it seems a bit vague without it. WDYT?