Spaces:
Configuration error
Configuration error
File size: 1,892 Bytes
81e8315 b56d19a ba81a8e b56d19a 81e8315 7b442f3 81e8315 b56d19a 81e8315 b56d19a 81e8315 b56d19a 81e8315 c894e8d 81e8315 4b9d55e b56d19a 4b9d55e c894e8d 81e8315 d1eca8b 81e8315 73e7d80 b56d19a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
# https://www.mkdocs.org/user-guide/configuration/#configuration
site_name: Speaches Documentation
site_url: https://speaches-ai.github.io/speaches/
repo_url: https://github.com/speaches-ai/speaches/
edit_uri: edit/master/docs/
docs_dir: docs
theme:
language: en
name: material
palette:
# Palette toggle for light mode
- scheme: default
primary: deep orange
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: deep orange
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/
- navigation.instant
- navigation.instant.progress
- navigation.instant.prefetch
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-search/
- search.highlight
- search.share
- content.tabs.link
- content.code.copy
plugins:
# https://github.com/bharel/mkdocs-render-swagger-plugin
- render_swagger
- mkdocstrings:
default_handler: python
nav:
- Introduction: introduction.md
- Capabilities / Usage:
- Speech-to-Text: usage/speech-to-text.md
- Text-to-Speech: usage/text-to-speech.md
- Live Transcription (using WebSockets): usage/live-transcription.md
- Open WebUI Intergration: usage/open-webui-integration.md
- Installation: installation.md
- Configuration: configuration.md
- API: api.md
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
# https://github.com/mkdocs/mkdocs/issues/545
- mdx_truly_sane_lists
# TODO: https://github.com/oprypin/markdown-callouts
|