Files
2026-07-13 13:22:34 +08:00

21 lines
881 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('runllm-keyboard-shortcut', 'Mod+j'); // cmd-j or ctrl-j to open the widget.
script.setAttribute('runllm-name', 'MLflow');
script.setAttribute('runllm-position', 'BOTTOM_RIGHT');
script.setAttribute('runllm-assistant-id', '116');
script.setAttribute('runllm-theme-color', '#008ED9');
script.setAttribute('runllm-brand-logo', 'https://mlflow.org/img/mlflow-favicon.ico');
script.setAttribute('runllm-community-type', 'slack');
script.setAttribute('runllm-community-url', 'https://mlflow.org/slack');
script.setAttribute('runllm-disable-ask-a-person', 'true');
script.async = true;
document.head.appendChild(script);
});