├── .devcontainer.json ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ └── feature_request.yml ├── dependabot.yml └── workflows │ ├── lint.yml │ ├── release.yml │ └── validate.yml ├── .gitignore ├── .python-version ├── .ruff.toml ├── LICENSE ├── README.md ├── config └── configuration.yaml ├── custom_components └── openwebui_conversation │ ├── __init__.py │ ├── api.py │ ├── config_flow.py │ ├── const.py │ ├── conversation.py │ ├── coordinator.py │ ├── exceptions.py │ ├── helpers.py │ ├── manifest.json │ ├── message.py │ ├── strings.json │ └── translations │ └── en.json ├── hacs.json ├── requirements.txt └── scripts ├── develop ├── lint └── setup /.devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealPSV/ha-openwebui-conversation/HEAD/.devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealPSV/ha-openwebui-conversation/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealPSV/ha-openwebui-conversation/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealPSV/ha-openwebui-conversation/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealPSV/ha-openwebui-conversation/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealPSV/ha-openwebui-conversation/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealPSV/ha-openwebui-conversation/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealPSV/ha-openwebui-conversation/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12.1 2 | -------------------------------------------------------------------------------- /.ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealPSV/ha-openwebui-conversation/HEAD/.ruff.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealPSV/ha-openwebui-conversation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealPSV/ha-openwebui-conversation/HEAD/README.md -------------------------------------------------------------------------------- /config/configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealPSV/ha-openwebui-conversation/HEAD/config/configuration.yaml -------------------------------------------------------------------------------- /custom_components/openwebui_conversation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealPSV/ha-openwebui-conversation/HEAD/custom_components/openwebui_conversation/__init__.py -------------------------------------------------------------------------------- /custom_components/openwebui_conversation/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealPSV/ha-openwebui-conversation/HEAD/custom_components/openwebui_conversation/api.py -------------------------------------------------------------------------------- /custom_components/openwebui_conversation/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealPSV/ha-openwebui-conversation/HEAD/custom_components/openwebui_conversation/config_flow.py -------------------------------------------------------------------------------- /custom_components/openwebui_conversation/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealPSV/ha-openwebui-conversation/HEAD/custom_components/openwebui_conversation/const.py -------------------------------------------------------------------------------- /custom_components/openwebui_conversation/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealPSV/ha-openwebui-conversation/HEAD/custom_components/openwebui_conversation/conversation.py -------------------------------------------------------------------------------- /custom_components/openwebui_conversation/coordinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealPSV/ha-openwebui-conversation/HEAD/custom_components/openwebui_conversation/coordinator.py -------------------------------------------------------------------------------- /custom_components/openwebui_conversation/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealPSV/ha-openwebui-conversation/HEAD/custom_components/openwebui_conversation/exceptions.py -------------------------------------------------------------------------------- /custom_components/openwebui_conversation/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealPSV/ha-openwebui-conversation/HEAD/custom_components/openwebui_conversation/helpers.py -------------------------------------------------------------------------------- /custom_components/openwebui_conversation/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealPSV/ha-openwebui-conversation/HEAD/custom_components/openwebui_conversation/manifest.json -------------------------------------------------------------------------------- /custom_components/openwebui_conversation/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealPSV/ha-openwebui-conversation/HEAD/custom_components/openwebui_conversation/message.py -------------------------------------------------------------------------------- /custom_components/openwebui_conversation/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealPSV/ha-openwebui-conversation/HEAD/custom_components/openwebui_conversation/strings.json -------------------------------------------------------------------------------- /custom_components/openwebui_conversation/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealPSV/ha-openwebui-conversation/HEAD/custom_components/openwebui_conversation/translations/en.json -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealPSV/ha-openwebui-conversation/HEAD/hacs.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealPSV/ha-openwebui-conversation/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/develop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealPSV/ha-openwebui-conversation/HEAD/scripts/develop -------------------------------------------------------------------------------- /scripts/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealPSV/ha-openwebui-conversation/HEAD/scripts/lint -------------------------------------------------------------------------------- /scripts/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealPSV/ha-openwebui-conversation/HEAD/scripts/setup --------------------------------------------------------------------------------