├── .dockerignore
├── .github
├── dependabot.yml
├── home-intent-logo.png
└── workflows
│ └── docker-publish.yml
├── .gitignore
├── Dockerfile
├── Dockerfile.gh-build
├── Dockerfile.rhasspy-external
├── Dockerfile.static
├── LICENSE.md
├── README.md
├── development-env
├── Dockerfile.docs
├── Dockerfile.frontend
├── Dockerfile.python
└── config
│ └── config.example.yaml
├── docker-compose.example.yaml
├── docker-compose.yaml
├── docs
├── docs
│ ├── .pages
│ ├── apple-touch-icon.png
│ ├── favicon.ico
│ ├── fonts
│ │ ├── roboto-v27-latin-300.woff
│ │ ├── roboto-v27-latin-300.woff2
│ │ ├── roboto-v27-latin-700.woff
│ │ ├── roboto-v27-latin-700.woff2
│ │ ├── roboto-v27-latin-italic.woff
│ │ ├── roboto-v27-latin-italic.woff2
│ │ ├── roboto-v27-latin-regular.woff
│ │ ├── roboto-v27-latin-regular.woff2
│ │ ├── source-code-pro-v14-latin-regular.woff
│ │ └── source-code-pro-v14-latin-regular.woff2
│ ├── getting-started
│ │ ├── .pages
│ │ ├── advanced-features
│ │ │ ├── component-customization.md
│ │ │ ├── custom-components.md
│ │ │ ├── external-rhasspy.md
│ │ │ ├── rhasspy-config.md
│ │ │ └── satellites.md
│ │ ├── customization.md
│ │ ├── installation.md
│ │ ├── microphones.md
│ │ └── philosophy.md
│ ├── humans.txt
│ ├── img
│ │ ├── favicon-16.png
│ │ ├── favicon-32.png
│ │ ├── home-intent-green-outline.svg
│ │ ├── home-intent-white-house-sm.svg
│ │ ├── home-intent-white.svg
│ │ ├── home-intent.svg
│ │ ├── icon-192.png
│ │ ├── icon-512.png
│ │ ├── kitchen-1x.png
│ │ ├── kitchen-2x.png
│ │ ├── kitchen.png
│ │ ├── living-room-1x.png
│ │ ├── living-room-2x.png
│ │ ├── living-room.png
│ │ ├── office-1x.png
│ │ ├── office.png
│ │ ├── rhasspy-advanced.png
│ │ ├── rhasspy-ui
│ │ │ ├── sentences.png
│ │ │ ├── settings_audio-playing.png
│ │ │ ├── settings_audio-recording.png
│ │ │ ├── settings_boxed.png
│ │ │ ├── settings_mqtt.png
│ │ │ ├── settings_overall.png
│ │ │ ├── settings_wake-word.png
│ │ │ └── slots.png
│ │ └── ui
│ │ │ ├── home-assistant-edit-scripts.png
│ │ │ ├── home-assistant-filled-out.png
│ │ │ ├── home-assistant-settings.png
│ │ │ ├── home-assistant-toggle-half.png
│ │ │ ├── home-assistant-toggle.png
│ │ │ ├── home-intent-filled-out.png
│ │ │ └── home-intent-settings.png
│ ├── index.md
│ ├── integrations
│ │ ├── home-assistant.md
│ │ └── timer.md
│ ├── manifest.json
│ ├── reference
│ │ ├── .pages
│ │ ├── api
│ │ │ ├── .pages
│ │ │ ├── api-overview.md
│ │ │ ├── get-file.md
│ │ │ ├── home-intent-object.md
│ │ │ └── intents-class.md
│ │ ├── developer
│ │ │ ├── .pages
│ │ │ ├── additional-homeintent-config.md
│ │ │ ├── custom-rhasspy-profile.md
│ │ │ ├── customization-dev-reference.md
│ │ │ ├── example-component.md
│ │ │ └── local-development.md
│ │ ├── how-well-does-it-work.md
│ │ └── translations
│ │ │ ├── developing-translations.md
│ │ │ └── translating-components.md
│ ├── robots.txt
│ └── stylesheets
│ │ └── extra.css
├── mkdocs.yml
├── overrides
│ ├── home.html
│ └── main.html
└── requirements.txt
├── generate_dockerfiles.py
├── home_intent
├── __init__.py
├── __main__.py
├── audio_config.py
├── components
│ ├── home_assistant
│ │ ├── __init__.py
│ │ ├── api.py
│ │ ├── api_translations
│ │ │ ├── README.md
│ │ │ ├── de.json
│ │ │ └── fr.json
│ │ ├── climate
│ │ │ ├── base_climate.py
│ │ │ ├── de.py
│ │ │ ├── en.py
│ │ │ └── fr.py
│ │ ├── cover
│ │ │ ├── base_cover.py
│ │ │ ├── de.py
│ │ │ ├── en.py
│ │ │ └── fr.py
│ │ ├── fan
│ │ │ ├── base_fan.py
│ │ │ ├── en.py
│ │ │ └── fr.py
│ │ ├── group
│ │ │ ├── base_group.py
│ │ │ ├── en.py
│ │ │ └── fr.py
│ │ ├── humidifier
│ │ │ ├── base_humidifier.py
│ │ │ ├── en.py
│ │ │ └── fr.py
│ │ ├── light
│ │ │ ├── base_light.py
│ │ │ ├── de.py
│ │ │ ├── en.py
│ │ │ └── fr.py
│ │ ├── lock
│ │ │ ├── base_lock.py
│ │ │ ├── de.py
│ │ │ ├── en.py
│ │ │ └── fr.py
│ │ ├── media_player
│ │ │ ├── base_media_player.py
│ │ │ ├── en.py
│ │ │ └── fr.py
│ │ ├── remote
│ │ │ ├── base_remote.py
│ │ │ ├── de.py
│ │ │ ├── en.py
│ │ │ └── fr.py
│ │ ├── script
│ │ │ └── __init__.py
│ │ ├── shopping_list
│ │ │ ├── base_shopping_list.py
│ │ │ ├── de.py
│ │ │ ├── en.py
│ │ │ └── fr.py
│ │ ├── switch
│ │ │ ├── base_switch.py
│ │ │ ├── de.py
│ │ │ ├── en.py
│ │ │ └── fr.py
│ │ └── weather
│ │ │ ├── base_weather.py
│ │ │ ├── en.py
│ │ │ └── fr.py
│ └── timer
│ │ ├── __init__.py
│ │ ├── base_timer.py
│ │ ├── de.py
│ │ ├── en.py
│ │ └── fr.py
├── constants.py
├── default_configs
│ ├── arm
│ │ └── rhasspy_profile.json
│ ├── beep-high.wav
│ ├── beep-low.wav
│ ├── de
│ │ └── home_assistant
│ │ │ ├── color_names.yaml
│ │ │ ├── color_temperature.yaml
│ │ │ └── shopping_items.txt
│ ├── en
│ │ └── home_assistant
│ │ │ ├── color_names.yaml
│ │ │ ├── color_temperature.yaml
│ │ │ └── shopping_items.txt
│ ├── error.wav
│ ├── es
│ │ └── home_assistant
│ │ │ └── color_names.yaml
│ ├── fr
│ │ └── home_assistant
│ │ │ ├── color_names.yaml
│ │ │ ├── color_temperature.yaml
│ │ │ └── shopping_items.txt
│ ├── satellite_profile.json
│ ├── timer
│ │ └── alarm.wav
│ └── x86_64
│ │ └── rhasspy_profile.json
├── home_intent.py
├── intent_handler.py
├── intents
│ ├── __init__.py
│ ├── customization_mixin.py
│ ├── intents.py
│ └── util.py
├── meta.py
├── path_finder.py
├── rhasspy_api.py
├── settings.py
├── update_scripts
│ └── 2021
│ │ └── 2021-12-0.py
└── updater.py
├── mypy.ini
├── pyproject.toml
├── requirements.txt
├── setup
├── setup.sh
└── supervisord.conf
├── tests
├── __init__.py
├── disable_all.yaml
├── sample_light.py
├── sample_light_broken_arg.py
├── sample_light_broken_sentence.py
├── sample_light_broken_sentence2.py
├── test_bad_imports.py
├── test_base_cases.py
├── test_various_sentence_customizations.py
├── test_various_slot_customizations.py
├── various_sentence_customizations.yaml
└── various_slot_customizations.yaml
└── ui
├── __init__.py
├── __main__.py
├── config.py
├── exceptions.py
├── extract_settings.py
├── frontend
├── .eslintrc.cjs
├── .gitignore
├── .prettierrc
├── README.md
├── install-and-run.sh
├── package-lock.json
├── package.json
├── postcss.config.cjs
├── src
│ ├── app.html
│ ├── app.postcss
│ ├── global.d.ts
│ ├── lib
│ │ ├── PageLayout.svelte
│ │ ├── components
│ │ │ ├── Button.svelte
│ │ │ ├── Checkbox.svelte
│ │ │ ├── HomeIntentWhite.svelte
│ │ │ ├── SectionBar.svelte
│ │ │ └── Toggle.svelte
│ │ ├── icons
│ │ │ ├── card-list.svelte
│ │ │ ├── check.svelte
│ │ │ ├── file-earmark-text-link.svelte
│ │ │ ├── gear-fill.svelte
│ │ │ ├── journal-richtext.svelte
│ │ │ ├── layout-h-split.svelte
│ │ │ ├── layout-split.svelte
│ │ │ ├── list.svelte
│ │ │ ├── mic-fill.svelte
│ │ │ ├── play-circle-fill.svelte
│ │ │ ├── play-fill.svelte
│ │ │ ├── plus-circle.svelte
│ │ │ ├── speaker.svelte
│ │ │ ├── spinner.svelte
│ │ │ ├── three-dots-vertical.svelte
│ │ │ ├── toggle-off.svelte
│ │ │ ├── toggle-on.svelte
│ │ │ ├── tools.svelte
│ │ │ ├── trash.svelte
│ │ │ └── x-circle-fill.svelte
│ │ ├── pages
│ │ │ ├── layout
│ │ │ │ └── Menu.svelte
│ │ │ ├── satellites
│ │ │ │ └── SaveButton.svelte
│ │ │ └── settings
│ │ │ │ ├── AutoSettings.svelte
│ │ │ │ ├── ComponentList.svelte
│ │ │ │ ├── ComponentListMenu.svelte
│ │ │ │ ├── HelpText.svelte
│ │ │ │ ├── HomeIntentSettings.svelte
│ │ │ │ ├── NoSettings.svelte
│ │ │ │ ├── RestartButton.svelte
│ │ │ │ ├── SaveButton.svelte
│ │ │ │ ├── SettingsList.svelte
│ │ │ │ ├── SettingsSection.svelte
│ │ │ │ ├── SettingsTitle.svelte
│ │ │ │ └── form_elements
│ │ │ │ ├── array.svelte
│ │ │ │ ├── boolean.svelte
│ │ │ │ ├── custom_objects
│ │ │ │ ├── ScriptAction.svelte
│ │ │ │ ├── ScriptActions.svelte
│ │ │ │ └── index.js
│ │ │ │ ├── index.js
│ │ │ │ ├── object.svelte
│ │ │ │ └── string.svelte
│ │ └── util
│ │ │ ├── capitalization.js
│ │ │ └── merge.js
│ └── routes
│ │ ├── +layout.js
│ │ ├── +layout.svelte
│ │ ├── +page.js
│ │ ├── +page.svelte
│ │ ├── logs
│ │ └── +page.svelte
│ │ ├── satellites
│ │ └── +page.svelte
│ │ └── settings
│ │ └── +page.svelte
├── static
│ └── favicon.ico
├── svelte.config.js
├── tailwind.config.cjs
├── tsconfig.json
├── update-install-run.sh
└── vite.config.js
├── main.py
├── rhasspy_api.py
├── routers
├── __init__.py
├── rhasspy.py
├── settings.py
└── websockets.py
└── test-sound.wav
/.dockerignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/.dockerignore
--------------------------------------------------------------------------------
/.github/dependabot.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/.github/dependabot.yml
--------------------------------------------------------------------------------
/.github/home-intent-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/.github/home-intent-logo.png
--------------------------------------------------------------------------------
/.github/workflows/docker-publish.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/.github/workflows/docker-publish.yml
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/.gitignore
--------------------------------------------------------------------------------
/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/Dockerfile
--------------------------------------------------------------------------------
/Dockerfile.gh-build:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/Dockerfile.gh-build
--------------------------------------------------------------------------------
/Dockerfile.rhasspy-external:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/Dockerfile.rhasspy-external
--------------------------------------------------------------------------------
/Dockerfile.static:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/Dockerfile.static
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/LICENSE.md
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/README.md
--------------------------------------------------------------------------------
/development-env/Dockerfile.docs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/development-env/Dockerfile.docs
--------------------------------------------------------------------------------
/development-env/Dockerfile.frontend:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/development-env/Dockerfile.frontend
--------------------------------------------------------------------------------
/development-env/Dockerfile.python:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/development-env/Dockerfile.python
--------------------------------------------------------------------------------
/development-env/config/config.example.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/development-env/config/config.example.yaml
--------------------------------------------------------------------------------
/docker-compose.example.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docker-compose.example.yaml
--------------------------------------------------------------------------------
/docker-compose.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docker-compose.yaml
--------------------------------------------------------------------------------
/docs/docs/.pages:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/.pages
--------------------------------------------------------------------------------
/docs/docs/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/apple-touch-icon.png
--------------------------------------------------------------------------------
/docs/docs/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/favicon.ico
--------------------------------------------------------------------------------
/docs/docs/fonts/roboto-v27-latin-300.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/fonts/roboto-v27-latin-300.woff
--------------------------------------------------------------------------------
/docs/docs/fonts/roboto-v27-latin-300.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/fonts/roboto-v27-latin-300.woff2
--------------------------------------------------------------------------------
/docs/docs/fonts/roboto-v27-latin-700.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/fonts/roboto-v27-latin-700.woff
--------------------------------------------------------------------------------
/docs/docs/fonts/roboto-v27-latin-700.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/fonts/roboto-v27-latin-700.woff2
--------------------------------------------------------------------------------
/docs/docs/fonts/roboto-v27-latin-italic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/fonts/roboto-v27-latin-italic.woff
--------------------------------------------------------------------------------
/docs/docs/fonts/roboto-v27-latin-italic.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/fonts/roboto-v27-latin-italic.woff2
--------------------------------------------------------------------------------
/docs/docs/fonts/roboto-v27-latin-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/fonts/roboto-v27-latin-regular.woff
--------------------------------------------------------------------------------
/docs/docs/fonts/roboto-v27-latin-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/fonts/roboto-v27-latin-regular.woff2
--------------------------------------------------------------------------------
/docs/docs/fonts/source-code-pro-v14-latin-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/fonts/source-code-pro-v14-latin-regular.woff
--------------------------------------------------------------------------------
/docs/docs/fonts/source-code-pro-v14-latin-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/fonts/source-code-pro-v14-latin-regular.woff2
--------------------------------------------------------------------------------
/docs/docs/getting-started/.pages:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/getting-started/.pages
--------------------------------------------------------------------------------
/docs/docs/getting-started/advanced-features/component-customization.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/getting-started/advanced-features/component-customization.md
--------------------------------------------------------------------------------
/docs/docs/getting-started/advanced-features/custom-components.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/getting-started/advanced-features/custom-components.md
--------------------------------------------------------------------------------
/docs/docs/getting-started/advanced-features/external-rhasspy.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/getting-started/advanced-features/external-rhasspy.md
--------------------------------------------------------------------------------
/docs/docs/getting-started/advanced-features/rhasspy-config.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/getting-started/advanced-features/rhasspy-config.md
--------------------------------------------------------------------------------
/docs/docs/getting-started/advanced-features/satellites.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/getting-started/advanced-features/satellites.md
--------------------------------------------------------------------------------
/docs/docs/getting-started/customization.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/getting-started/customization.md
--------------------------------------------------------------------------------
/docs/docs/getting-started/installation.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/getting-started/installation.md
--------------------------------------------------------------------------------
/docs/docs/getting-started/microphones.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/getting-started/microphones.md
--------------------------------------------------------------------------------
/docs/docs/getting-started/philosophy.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/getting-started/philosophy.md
--------------------------------------------------------------------------------
/docs/docs/humans.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/humans.txt
--------------------------------------------------------------------------------
/docs/docs/img/favicon-16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/favicon-16.png
--------------------------------------------------------------------------------
/docs/docs/img/favicon-32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/favicon-32.png
--------------------------------------------------------------------------------
/docs/docs/img/home-intent-green-outline.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/home-intent-green-outline.svg
--------------------------------------------------------------------------------
/docs/docs/img/home-intent-white-house-sm.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/home-intent-white-house-sm.svg
--------------------------------------------------------------------------------
/docs/docs/img/home-intent-white.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/home-intent-white.svg
--------------------------------------------------------------------------------
/docs/docs/img/home-intent.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/home-intent.svg
--------------------------------------------------------------------------------
/docs/docs/img/icon-192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/icon-192.png
--------------------------------------------------------------------------------
/docs/docs/img/icon-512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/icon-512.png
--------------------------------------------------------------------------------
/docs/docs/img/kitchen-1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/kitchen-1x.png
--------------------------------------------------------------------------------
/docs/docs/img/kitchen-2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/kitchen-2x.png
--------------------------------------------------------------------------------
/docs/docs/img/kitchen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/kitchen.png
--------------------------------------------------------------------------------
/docs/docs/img/living-room-1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/living-room-1x.png
--------------------------------------------------------------------------------
/docs/docs/img/living-room-2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/living-room-2x.png
--------------------------------------------------------------------------------
/docs/docs/img/living-room.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/living-room.png
--------------------------------------------------------------------------------
/docs/docs/img/office-1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/office-1x.png
--------------------------------------------------------------------------------
/docs/docs/img/office.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/office.png
--------------------------------------------------------------------------------
/docs/docs/img/rhasspy-advanced.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/rhasspy-advanced.png
--------------------------------------------------------------------------------
/docs/docs/img/rhasspy-ui/sentences.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/rhasspy-ui/sentences.png
--------------------------------------------------------------------------------
/docs/docs/img/rhasspy-ui/settings_audio-playing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/rhasspy-ui/settings_audio-playing.png
--------------------------------------------------------------------------------
/docs/docs/img/rhasspy-ui/settings_audio-recording.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/rhasspy-ui/settings_audio-recording.png
--------------------------------------------------------------------------------
/docs/docs/img/rhasspy-ui/settings_boxed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/rhasspy-ui/settings_boxed.png
--------------------------------------------------------------------------------
/docs/docs/img/rhasspy-ui/settings_mqtt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/rhasspy-ui/settings_mqtt.png
--------------------------------------------------------------------------------
/docs/docs/img/rhasspy-ui/settings_overall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/rhasspy-ui/settings_overall.png
--------------------------------------------------------------------------------
/docs/docs/img/rhasspy-ui/settings_wake-word.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/rhasspy-ui/settings_wake-word.png
--------------------------------------------------------------------------------
/docs/docs/img/rhasspy-ui/slots.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/rhasspy-ui/slots.png
--------------------------------------------------------------------------------
/docs/docs/img/ui/home-assistant-edit-scripts.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/ui/home-assistant-edit-scripts.png
--------------------------------------------------------------------------------
/docs/docs/img/ui/home-assistant-filled-out.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/ui/home-assistant-filled-out.png
--------------------------------------------------------------------------------
/docs/docs/img/ui/home-assistant-settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/ui/home-assistant-settings.png
--------------------------------------------------------------------------------
/docs/docs/img/ui/home-assistant-toggle-half.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/ui/home-assistant-toggle-half.png
--------------------------------------------------------------------------------
/docs/docs/img/ui/home-assistant-toggle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/ui/home-assistant-toggle.png
--------------------------------------------------------------------------------
/docs/docs/img/ui/home-intent-filled-out.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/ui/home-intent-filled-out.png
--------------------------------------------------------------------------------
/docs/docs/img/ui/home-intent-settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/img/ui/home-intent-settings.png
--------------------------------------------------------------------------------
/docs/docs/index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/index.md
--------------------------------------------------------------------------------
/docs/docs/integrations/home-assistant.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/integrations/home-assistant.md
--------------------------------------------------------------------------------
/docs/docs/integrations/timer.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/integrations/timer.md
--------------------------------------------------------------------------------
/docs/docs/manifest.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/manifest.json
--------------------------------------------------------------------------------
/docs/docs/reference/.pages:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/reference/.pages
--------------------------------------------------------------------------------
/docs/docs/reference/api/.pages:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/reference/api/.pages
--------------------------------------------------------------------------------
/docs/docs/reference/api/api-overview.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/reference/api/api-overview.md
--------------------------------------------------------------------------------
/docs/docs/reference/api/get-file.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/reference/api/get-file.md
--------------------------------------------------------------------------------
/docs/docs/reference/api/home-intent-object.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/reference/api/home-intent-object.md
--------------------------------------------------------------------------------
/docs/docs/reference/api/intents-class.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/reference/api/intents-class.md
--------------------------------------------------------------------------------
/docs/docs/reference/developer/.pages:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/reference/developer/.pages
--------------------------------------------------------------------------------
/docs/docs/reference/developer/additional-homeintent-config.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/reference/developer/additional-homeintent-config.md
--------------------------------------------------------------------------------
/docs/docs/reference/developer/custom-rhasspy-profile.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/reference/developer/custom-rhasspy-profile.md
--------------------------------------------------------------------------------
/docs/docs/reference/developer/customization-dev-reference.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/reference/developer/customization-dev-reference.md
--------------------------------------------------------------------------------
/docs/docs/reference/developer/example-component.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/reference/developer/example-component.md
--------------------------------------------------------------------------------
/docs/docs/reference/developer/local-development.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/reference/developer/local-development.md
--------------------------------------------------------------------------------
/docs/docs/reference/how-well-does-it-work.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/reference/how-well-does-it-work.md
--------------------------------------------------------------------------------
/docs/docs/reference/translations/developing-translations.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/reference/translations/developing-translations.md
--------------------------------------------------------------------------------
/docs/docs/reference/translations/translating-components.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/reference/translations/translating-components.md
--------------------------------------------------------------------------------
/docs/docs/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/docs/docs/stylesheets/extra.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/docs/stylesheets/extra.css
--------------------------------------------------------------------------------
/docs/mkdocs.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/mkdocs.yml
--------------------------------------------------------------------------------
/docs/overrides/home.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/overrides/home.html
--------------------------------------------------------------------------------
/docs/overrides/main.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/overrides/main.html
--------------------------------------------------------------------------------
/docs/requirements.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/docs/requirements.txt
--------------------------------------------------------------------------------
/generate_dockerfiles.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/generate_dockerfiles.py
--------------------------------------------------------------------------------
/home_intent/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/__init__.py
--------------------------------------------------------------------------------
/home_intent/__main__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/__main__.py
--------------------------------------------------------------------------------
/home_intent/audio_config.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/audio_config.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/__init__.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/api.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/api.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/api_translations/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/api_translations/README.md
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/api_translations/de.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/api_translations/de.json
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/api_translations/fr.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/api_translations/fr.json
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/climate/base_climate.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/climate/base_climate.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/climate/de.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/climate/de.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/climate/en.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/climate/en.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/climate/fr.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/climate/fr.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/cover/base_cover.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/cover/base_cover.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/cover/de.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/cover/de.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/cover/en.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/cover/en.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/cover/fr.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/cover/fr.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/fan/base_fan.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/fan/base_fan.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/fan/en.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/fan/en.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/fan/fr.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/fan/fr.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/group/base_group.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/group/base_group.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/group/en.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/group/en.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/group/fr.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/group/fr.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/humidifier/base_humidifier.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/humidifier/base_humidifier.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/humidifier/en.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/humidifier/en.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/humidifier/fr.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/humidifier/fr.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/light/base_light.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/light/base_light.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/light/de.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/light/de.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/light/en.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/light/en.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/light/fr.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/light/fr.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/lock/base_lock.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/lock/base_lock.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/lock/de.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/lock/de.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/lock/en.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/lock/en.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/lock/fr.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/lock/fr.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/media_player/base_media_player.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/media_player/base_media_player.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/media_player/en.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/media_player/en.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/media_player/fr.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/media_player/fr.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/remote/base_remote.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/remote/base_remote.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/remote/de.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/remote/de.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/remote/en.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/remote/en.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/remote/fr.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/remote/fr.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/script/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/script/__init__.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/shopping_list/base_shopping_list.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/shopping_list/base_shopping_list.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/shopping_list/de.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/shopping_list/de.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/shopping_list/en.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/shopping_list/en.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/shopping_list/fr.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/shopping_list/fr.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/switch/base_switch.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/switch/base_switch.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/switch/de.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/switch/de.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/switch/en.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/switch/en.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/switch/fr.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/switch/fr.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/weather/base_weather.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/weather/base_weather.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/weather/en.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/weather/en.py
--------------------------------------------------------------------------------
/home_intent/components/home_assistant/weather/fr.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/home_assistant/weather/fr.py
--------------------------------------------------------------------------------
/home_intent/components/timer/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/timer/__init__.py
--------------------------------------------------------------------------------
/home_intent/components/timer/base_timer.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/timer/base_timer.py
--------------------------------------------------------------------------------
/home_intent/components/timer/de.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/timer/de.py
--------------------------------------------------------------------------------
/home_intent/components/timer/en.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/timer/en.py
--------------------------------------------------------------------------------
/home_intent/components/timer/fr.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/components/timer/fr.py
--------------------------------------------------------------------------------
/home_intent/constants.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/constants.py
--------------------------------------------------------------------------------
/home_intent/default_configs/arm/rhasspy_profile.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/default_configs/arm/rhasspy_profile.json
--------------------------------------------------------------------------------
/home_intent/default_configs/beep-high.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/default_configs/beep-high.wav
--------------------------------------------------------------------------------
/home_intent/default_configs/beep-low.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/default_configs/beep-low.wav
--------------------------------------------------------------------------------
/home_intent/default_configs/de/home_assistant/color_names.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/default_configs/de/home_assistant/color_names.yaml
--------------------------------------------------------------------------------
/home_intent/default_configs/de/home_assistant/color_temperature.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/default_configs/de/home_assistant/color_temperature.yaml
--------------------------------------------------------------------------------
/home_intent/default_configs/de/home_assistant/shopping_items.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/default_configs/de/home_assistant/shopping_items.txt
--------------------------------------------------------------------------------
/home_intent/default_configs/en/home_assistant/color_names.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/default_configs/en/home_assistant/color_names.yaml
--------------------------------------------------------------------------------
/home_intent/default_configs/en/home_assistant/color_temperature.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/default_configs/en/home_assistant/color_temperature.yaml
--------------------------------------------------------------------------------
/home_intent/default_configs/en/home_assistant/shopping_items.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/default_configs/en/home_assistant/shopping_items.txt
--------------------------------------------------------------------------------
/home_intent/default_configs/error.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/default_configs/error.wav
--------------------------------------------------------------------------------
/home_intent/default_configs/es/home_assistant/color_names.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/default_configs/es/home_assistant/color_names.yaml
--------------------------------------------------------------------------------
/home_intent/default_configs/fr/home_assistant/color_names.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/default_configs/fr/home_assistant/color_names.yaml
--------------------------------------------------------------------------------
/home_intent/default_configs/fr/home_assistant/color_temperature.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/default_configs/fr/home_assistant/color_temperature.yaml
--------------------------------------------------------------------------------
/home_intent/default_configs/fr/home_assistant/shopping_items.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/default_configs/fr/home_assistant/shopping_items.txt
--------------------------------------------------------------------------------
/home_intent/default_configs/satellite_profile.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/default_configs/satellite_profile.json
--------------------------------------------------------------------------------
/home_intent/default_configs/timer/alarm.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/default_configs/timer/alarm.wav
--------------------------------------------------------------------------------
/home_intent/default_configs/x86_64/rhasspy_profile.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/default_configs/x86_64/rhasspy_profile.json
--------------------------------------------------------------------------------
/home_intent/home_intent.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/home_intent.py
--------------------------------------------------------------------------------
/home_intent/intent_handler.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/intent_handler.py
--------------------------------------------------------------------------------
/home_intent/intents/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/intents/__init__.py
--------------------------------------------------------------------------------
/home_intent/intents/customization_mixin.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/intents/customization_mixin.py
--------------------------------------------------------------------------------
/home_intent/intents/intents.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/intents/intents.py
--------------------------------------------------------------------------------
/home_intent/intents/util.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/intents/util.py
--------------------------------------------------------------------------------
/home_intent/meta.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/meta.py
--------------------------------------------------------------------------------
/home_intent/path_finder.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/path_finder.py
--------------------------------------------------------------------------------
/home_intent/rhasspy_api.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/rhasspy_api.py
--------------------------------------------------------------------------------
/home_intent/settings.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/settings.py
--------------------------------------------------------------------------------
/home_intent/update_scripts/2021/2021-12-0.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/update_scripts/2021/2021-12-0.py
--------------------------------------------------------------------------------
/home_intent/updater.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/home_intent/updater.py
--------------------------------------------------------------------------------
/mypy.ini:
--------------------------------------------------------------------------------
1 | [mypy]
2 | plugins = pydantic.mypy
3 |
--------------------------------------------------------------------------------
/pyproject.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/pyproject.toml
--------------------------------------------------------------------------------
/requirements.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/requirements.txt
--------------------------------------------------------------------------------
/setup/setup.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/setup/setup.sh
--------------------------------------------------------------------------------
/setup/supervisord.conf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/setup/supervisord.conf
--------------------------------------------------------------------------------
/tests/__init__.py:
--------------------------------------------------------------------------------
1 | """Home Intent Tests"""
2 |
--------------------------------------------------------------------------------
/tests/disable_all.yaml:
--------------------------------------------------------------------------------
1 | enable_all: false
--------------------------------------------------------------------------------
/tests/sample_light.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/tests/sample_light.py
--------------------------------------------------------------------------------
/tests/sample_light_broken_arg.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/tests/sample_light_broken_arg.py
--------------------------------------------------------------------------------
/tests/sample_light_broken_sentence.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/tests/sample_light_broken_sentence.py
--------------------------------------------------------------------------------
/tests/sample_light_broken_sentence2.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/tests/sample_light_broken_sentence2.py
--------------------------------------------------------------------------------
/tests/test_bad_imports.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/tests/test_bad_imports.py
--------------------------------------------------------------------------------
/tests/test_base_cases.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/tests/test_base_cases.py
--------------------------------------------------------------------------------
/tests/test_various_sentence_customizations.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/tests/test_various_sentence_customizations.py
--------------------------------------------------------------------------------
/tests/test_various_slot_customizations.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/tests/test_various_slot_customizations.py
--------------------------------------------------------------------------------
/tests/various_sentence_customizations.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/tests/various_sentence_customizations.yaml
--------------------------------------------------------------------------------
/tests/various_slot_customizations.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/tests/various_slot_customizations.yaml
--------------------------------------------------------------------------------
/ui/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ui/__main__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/ui/__main__.py
--------------------------------------------------------------------------------
/ui/config.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/ui/config.py
--------------------------------------------------------------------------------
/ui/exceptions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/ui/exceptions.py
--------------------------------------------------------------------------------
/ui/extract_settings.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/ui/extract_settings.py
--------------------------------------------------------------------------------
/ui/frontend/.eslintrc.cjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/ui/frontend/.eslintrc.cjs
--------------------------------------------------------------------------------
/ui/frontend/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | node_modules
3 | /build
4 | /.svelte-kit
5 | /package
6 |
--------------------------------------------------------------------------------
/ui/frontend/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "printWidth": 100
3 | }
4 |
--------------------------------------------------------------------------------
/ui/frontend/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/ui/frontend/README.md
--------------------------------------------------------------------------------
/ui/frontend/install-and-run.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/ui/frontend/install-and-run.sh
--------------------------------------------------------------------------------
/ui/frontend/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/ui/frontend/package-lock.json
--------------------------------------------------------------------------------
/ui/frontend/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/ui/frontend/package.json
--------------------------------------------------------------------------------
/ui/frontend/postcss.config.cjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/ui/frontend/postcss.config.cjs
--------------------------------------------------------------------------------
/ui/frontend/src/app.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/ui/frontend/src/app.html
--------------------------------------------------------------------------------
/ui/frontend/src/app.postcss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JarvyJ/HomeIntent/HEAD/ui/frontend/src/app.postcss
--------------------------------------------------------------------------------
/ui/frontend/src/global.d.ts:
--------------------------------------------------------------------------------
1 | ///