You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Cookbook Onboard (AI Assistant). API key is public so it's fine to just hardcode it here.
89
+
var COOKBOOK_API_KEY = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI2NmExOTE1ZjY4ZWI5Y2IyMDQzY2E5MGMiLCJpYXQiOjE3MjE4NjQ1NDMsImV4cCI6MjAzNzQ0MDU0M30.zPYzKohNZXSvgGeTjeZc8NmE13lwaj5A-cq1p0MMC5E";
90
+
91
+
var element = document.getElementById('__cookbook');
92
+
if (!element) {
93
+
element = document.createElement('div');
94
+
element.id = '__cookbook';
95
+
element.dataset.apiKey = COOKBOOK_API_KEY;
96
+
document.body.appendChild(element);
97
+
}
98
+
99
+
var script = document.getElementById('__cookbook-script');
0 commit comments