mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-06 12:20:52 +01:00
Fixes #ISSUE_NUMBER Pull Request resolved: https://github.com/pytorch/pytorch/pull/152055 Approved by: https://github.com/albanD
18 lines
593 B
JavaScript
18 lines
593 B
JavaScript
document.addEventListener("DOMContentLoaded", function () {
|
|
var script = document.createElement("script");
|
|
script.type = "module";
|
|
script.id = "runllm-widget-script"
|
|
|
|
script.src = "https://widget.runllm.com";
|
|
|
|
script.setAttribute("version", "stable");
|
|
script.setAttribute("crossorigin", "true");
|
|
script.setAttribute("runllm-keyboard-shortcut", "Mod+j");
|
|
script.setAttribute("runllm-name", "PyTorch");
|
|
script.setAttribute("runllm-position", "BOTTOM_RIGHT");
|
|
script.setAttribute("runllm-assistant-id", "834");
|
|
|
|
script.async = true;
|
|
document.head.appendChild(script);
|
|
});
|