-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add docsqa to docs website (#1363)
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{% extends "!page.html" %} | ||
{% block scripts %} | ||
{{ super() }} | ||
<!-- DocsQA integration start --> | ||
<script src="https://cdn.jsdelivr.net/npm/qabot@0.4"></script> | ||
|
||
<qa-bot | ||
token="qAFjWNovwHUXKKkVhy4AN6tawSwCMfdb3HJNPLVM23ACdrBGxmBNObM=" | ||
title="🐸 STT Bot" | ||
description="A library for advanced Text-to-Speech generation" | ||
style="bottom: calc(1.25em + 80px);" | ||
> | ||
<template> | ||
<dl> | ||
<dt>You can ask questions about TTS. Try</dt> | ||
<dd>how to install TTS for Python?</dd> | ||
<dd>What data format for the training dataset?</dd> | ||
<dd>what makes a good dataset?</dd> | ||
</dl> | ||
</template> | ||
</qa-bot> | ||
<!-- DocsQA integration end --> | ||
{% endblock %} |