Deployed 507e724 to v0.8.1 with MkDocs 1.5.3 and mike 1.1.2

gh-pages
GitHub Action 6 months ago
parent 9f322b7ead
commit 938baac1cf

@ -80,7 +80,7 @@
<div data-md-component="skip">
<a href="#general-troubleshooting-tips" class="md-skip">
<a href="#introducing-the-homepage-ai-bot" class="md-skip">
Skip to content
</a>
@ -4393,6 +4393,19 @@
</label>
<ul class="md-nav__list" data-md-component="toc" data-md-scrollfix>
<li class="md-nav__item">
<a href="#introducing-the-homepage-ai-bot" class="md-nav__link">
<span class="md-ellipsis">
<span class="md-typeset">
Introducing the Homepage AI Bot
</span>
</span>
</a>
</li>
<li class="md-nav__item">
<a href="#general-troubleshooting-tips" class="md-nav__link">
<span class="md-ellipsis">
@ -4622,6 +4635,19 @@
</label>
<ul class="md-nav__list" data-md-component="toc" data-md-scrollfix>
<li class="md-nav__item">
<a href="#introducing-the-homepage-ai-bot" class="md-nav__link">
<span class="md-ellipsis">
<span class="md-typeset">
Introducing the Homepage AI Bot
</span>
</span>
</a>
</li>
<li class="md-nav__item">
<a href="#general-troubleshooting-tips" class="md-nav__link">
<span class="md-ellipsis">
@ -4687,6 +4713,8 @@
<h1>Troubleshooting</h1>
<h2 id="introducing-the-homepage-ai-bot">Introducing the Homepage AI Bot</h2>
<p>Thanks to the generous folks at <a href="https://glimelab.ai">Glime</a>, Homepage is now equipped with a pretty helpful AI-powered bot. The bot has full knowledge of our docs, GitHub issues and discussions and great at answering specific questions about setting up your Homepage. To use the bot, just hit the 'Ask AI' button on any page in our docs or check out the <a href="https://discord.com/channels/1019316731635834932/1177885603552038993">#ai-support channel on Discord</a>!</p>
<h2 id="general-troubleshooting-tips">General Troubleshooting Tips</h2>
<ul>
<li>For API errors, clicking the "API Error Information" button in the widget will usually show some helpful information as to whether the issue is reaching the service host, an authentication issue, etc.</li>

@ -1,6 +1,12 @@
var glimeScript;
document$.subscribe(function () {
var glimeScript = document.createElement("script");
glimeScript.setAttribute("src", "https://cdn.glimelab.ai/widget/1.0.0/widget.js");
glimeScript.setAttribute("onload", 'window.glime.init("Bl3mlvfCnTnRm5");');
document.head.appendChild(glimeScript);
if (!glimeScript) {
glimeScript = document.createElement("script");
glimeScript.setAttribute("data", "name: 'glime'");
glimeScript.setAttribute("src", "https://cdn.glimelab.ai/widget/1.0.0/widget.js");
glimeScript.setAttribute("onload", 'window.glime.init("Bl3mlvfCnTnRm5");');
document.head.appendChild(glimeScript);
} else {
// window.glime.init("Bl3mlvfCnTnRm5");
}
});

File diff suppressed because one or more lines are too long

Binary file not shown.
Loading…
Cancel
Save