run_llm_widget.js 743 Bytes
Newer Older
1
// Add RunLLM widget
2
3
4
5
6
7
8
9
10
11
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("runllm-keyboard-shortcut", "Mod+j"); // cmd-j or ctrl-j to open the widget.
    script.setAttribute("runllm-name", "vLLM");
12
    script.setAttribute("runllm-position", "BOTTOM_RIGHT");
13
14
    script.setAttribute("runllm-position-y", "120px");
    script.setAttribute("runllm-position-x", "20px");
15
16
17
18
    script.setAttribute("runllm-assistant-id", "207");
  
    script.async = true;
    document.head.appendChild(script);
19
  });