581
edits
m (Protected "Template:Infobox Voice Assistant": Protect template ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))) |
mNo edit summary |
||
(37 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
<pre> | <pre> | ||
{{Infobox Voice Assistant | {{Infobox Voice Assistant | ||
| | | Name = Cool voice assistant | ||
| | | InternetRequired = yes | ||
| | | SupportedLanguages = de,en,fr | ||
| WakeWord = Hey assistant | |||
| SupportedOS = Raspian | |||
| CodeLanguage = Python3 | |||
| LatestReleaseDate = 2021-12-19 | |||
}} | }} | ||
</pre> | </pre> | ||
Line 11: | Line 15: | ||
<onlyinclude> | <onlyinclude> | ||
{| class="wikitable" style="float:right; margin-left: 30px; | {| class="wikitable" style="float:right; margin-left: 30px; | ||
|- | |- | ||
! | !colspan="2"|<span style="font-size: larger;">{{#if:{{{Name|}}} | {{{Name}}} | {{PAGENAME}} }}</span> | ||
| {{{ | |||
|- | |- | ||
{{#if: {{{Url|}}} | <nowiki /> | |||
{{!}}- | |||
|- | {{!}} '''Website''' | ||
! | {{!}} {{{Url}}} | ||
}} | |||
{{#if:{{{License|}}} | <nowiki /> | |||
! | {{!}}- | ||
{{!}} '''License''' | |||
{{!}} {{{License}}} | |||
! Supported Languages | }} | ||
{{#if:{{{InternetRequired|}}} | <nowiki /> | |||
{{!}}- | |||
! | {{!}} '''Internetaccess required''' | ||
{{!}} {{{InternetRequired}}} | |||
}} | |||
! Default STT Engine | {{#if:{{{SupportedLanguages|}}} | <nowiki /> | ||
{{!}}- | |||
{{!}} '''Supported Languages''' | |||
! Default | {{!}} {{{SupportedLanguages}}} | ||
| {{{ | }} | ||
{{#if:{{{WakeWord|}}} | <nowiki /> | |||
! | {{!}}- | ||
{{!}} '''Default Wakeword''' | |||
{{!}} {{{WakeWord}}} | |||
! Latest Version | }} | ||
{{#if:{{{DefaultSTT|}}} | <nowiki /> | |||
{{!}}- | |||
! Latest Update | {{!}} '''Default STT Engine''' | ||
{{!}} {{{DefaultSTT}}} | |||
}} | |||
{{#if:{{{DefaultTTS|}}} | <nowiki /> | |||
{{!}}- | |||
{{!}} '''Default TTS Engine''' | |||
{{!}} {{{DefaultTTS}}} | |||
}} | |||
{{#if:{{{SupportedOS|}}} | <nowiki /> | |||
{{!}}- | |||
{{!}} '''Operating System''' | |||
{{!}} {{{SupportedOS}}} | |||
}} | |||
{{#if:{{{CodeLanguage|}}} | <nowiki /> | |||
{{!}}- | |||
{{!}} '''Programming Language''' | |||
{{!}} {{{CodeLanguage}}} | |||
}} | |||
{{#if:{{{LatestVersion|}}} | <nowiki /> | |||
{{!}}- | |||
{{!}} '''Latest Version''' | |||
{{!}} {{{LatestVersion}}} | |||
}} | |||
{{#if:{{{LatestReleaseDate|}}} | <nowiki /> | |||
{{!}}- | |||
{{!}} '''Latest Update''' | |||
{{!}} {{{LatestReleaseDate}}} | |||
}} | |||
|} | |} | ||
</onlyinclude> | </onlyinclude> | ||
Line 50: | Line 78: | ||
<templatedata> | <templatedata> | ||
{ | { | ||
"description": "Infobox template for all available (open) voice assistants.", | |||
"params": { | |||
"Name": { | |||
"description": "Name of voice assistant, project or building company.", | |||
"example": "Cool Voice Assistant", | |||
"type": "string", | |||
"required": false, | |||
"label": "Name of voice assistant" | |||
}, | |||
"Url": { | |||
"description": "Webaddress for further information on this voice assistant.", | |||
"example": "https://www.CoolVoiceAssistant.local", | |||
"type": "url", | |||
"label": "Webpage" | |||
}, | |||
"License": { | |||
"description": "License this voice assistant is build / delivered with.", | |||
"type": "string" | |||
}, | |||
"SupportedLanguages": { | |||
"description": "Languages supported by this voice assistant (multi for several languages).", | |||
"type": "string", | |||
"default": "multi", | |||
"label": "Supported languages" | |||
}, | |||
"CodeLanguage": { | |||
"description": "Developped in which code language", | |||
"type": "string", | |||
"default": "Python, Perl, PHP, ...", | |||
"label": "Development language (Code)" | |||
}, | |||
"InternetRequired": { | |||
"description": "Is Internet access required for this voice assistant to work properly", | |||
"type": "boolean", | |||
"required": true, | |||
"label": "Online connectivity required" | |||
}, | |||
"DefaultSTT": { | |||
"description": "Default engine for speech recognition.", | |||
"type": "string", | |||
"default": "Cloud, Deepspeech, Kaldi, ...", | |||
"label": "Speech recognition service" | |||
}, | |||
"DefaultTTS": { | |||
"description": "Default engine for speech generation (TTS)", | |||
"example": "Cloud, Coqui TTS, ...", | |||
"type": "string", | |||
"label": "Speech generation service" | |||
}, | |||
"SupportedOS": { | |||
"description": "Supported Operating Systems", | |||
"type": "string", | |||
"default": "Raspian, Ubuntu, Mac OS X, Windows", | |||
"required": true, | |||
"label": "Supported Operating Systems" | |||
}, | |||
"WakeWord": { | |||
"description": "Default Wakeword to activate Voice assistant.", | |||
"type": "string", | |||
"default": "Hey Assistant.", | |||
"required": true, | |||
"label": "Activation word (Wakeword)" | |||
}, | |||
"LatestVersion": { | |||
"description": "Latest public stable available version", | |||
"type": "string", | |||
"label": "Latest stable version" | |||
}, | |||
"LatestReleaseDate": { | |||
"description": "Release date of latest stable version.", | |||
"type": "date", | |||
"label": "Release date of stable version" | |||
} | |||
}, | |||
"format": "block", | |||
"paramOrder": [ | |||
"Name", | |||
"Url", | |||
"License", | |||
"InternetRequired", | |||
"SupportedLanguages", | |||
"WakeWord", | |||
"DefaultSTT", | |||
"DefaultTTS", | |||
"SupportedOS", | |||
"CodeLanguage", | |||
"LatestVersion", | |||
"LatestReleaseDate" | |||
] | |||
} | } | ||
</templatedata> | </templatedata> |