Skip to content

Commit

Permalink
add ai qa bot (#4908)
Browse files Browse the repository at this point in the history
  • Loading branch information
nobodyiam authored Jul 2, 2023
1 parent 8f0331f commit d3d17ee
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,26 @@

</body>

<!-- add qa bot -->
<script>
(function() {
var link = document.createElement('link');
link.rel = 'stylesheet';
link.href = 'http://81.68.181.139/ai/qa-bot.css';
document.head.appendChild(link);

var script = document.createElement('script');
script.src = 'http://81.68.181.139/ai/qa-bot.js';
script.onload = function () {
QABot.initialize({
"serverUrl": "http://81.68.181.139/ai/qa",
"documentSiteUrlPrefix": "https://www.apolloconfig.com/#"
});
};
document.body.appendChild(script);
})();
</script>

<!-- mermaid -->
<script src="//unpkg.com/mermaid@8.14.0/dist/mermaid.min.js"></script>
<script>
Expand Down

0 comments on commit d3d17ee

Please sign in to comment.