Skip to content
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

feat: Cookbook Onboard (AI Assistant) integration #1170

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions main/.vitepress/config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,34 @@ export default defineConfig({
}, 500);
`,
],
/* --- Cookbook Onboard integration --- */
[
'script',
{},
`
document.addEventListener('DOMContentLoaded', function() {
// Cookbook Onboard (AI Assistant). API key is public so it's fine to just hardcode it here.
var COOKBOOK_API_KEY = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI2NmExOTE1ZjY4ZWI5Y2IyMDQzY2E5MGMiLCJpYXQiOjE3MjE4NjQ1NDMsImV4cCI6MjAzNzQ0MDU0M30.zPYzKohNZXSvgGeTjeZc8NmE13lwaj5A-cq1p0MMC5E";

var element = document.getElementById('__cookbook');
if (!element) {
element = document.createElement('div');
element.id = '__cookbook';
element.dataset.apiKey = COOKBOOK_API_KEY;
document.body.appendChild(element);
}

var script = document.getElementById('__cookbook-script');
if (!script) {
script = document.createElement('script');
script.src = 'https://cdn.jsdelivr.net/npm/@cookbookdev/docsbot/dist/standalone/index.cjs.js';
script.id = '__cookbook-script';
script.async = true;
document.body.appendChild(script);
}
});
`,
],
],
ignoreDeadLinks: [
// ignore all localhost links
Expand Down