├── .gitignore ├── LICENSE ├── README.md ├── README_zh.md └── custom_components └── llm_conversation_assist ├── __init__.py ├── config_flow.py ├── const.py ├── ha_service.py ├── langchain_tools ├── ha_tools.py └── llm_models.py ├── manifest.json ├── strings.json └── translations ├── en.json └── zh-Hans.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzz765/hass_llm_assist/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzz765/hass_llm_assist/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzz765/hass_llm_assist/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzz765/hass_llm_assist/HEAD/README_zh.md -------------------------------------------------------------------------------- /custom_components/llm_conversation_assist/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzz765/hass_llm_assist/HEAD/custom_components/llm_conversation_assist/__init__.py -------------------------------------------------------------------------------- /custom_components/llm_conversation_assist/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzz765/hass_llm_assist/HEAD/custom_components/llm_conversation_assist/config_flow.py -------------------------------------------------------------------------------- /custom_components/llm_conversation_assist/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzz765/hass_llm_assist/HEAD/custom_components/llm_conversation_assist/const.py -------------------------------------------------------------------------------- /custom_components/llm_conversation_assist/ha_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzz765/hass_llm_assist/HEAD/custom_components/llm_conversation_assist/ha_service.py -------------------------------------------------------------------------------- /custom_components/llm_conversation_assist/langchain_tools/ha_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzz765/hass_llm_assist/HEAD/custom_components/llm_conversation_assist/langchain_tools/ha_tools.py -------------------------------------------------------------------------------- /custom_components/llm_conversation_assist/langchain_tools/llm_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzz765/hass_llm_assist/HEAD/custom_components/llm_conversation_assist/langchain_tools/llm_models.py -------------------------------------------------------------------------------- /custom_components/llm_conversation_assist/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzz765/hass_llm_assist/HEAD/custom_components/llm_conversation_assist/manifest.json -------------------------------------------------------------------------------- /custom_components/llm_conversation_assist/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzz765/hass_llm_assist/HEAD/custom_components/llm_conversation_assist/strings.json -------------------------------------------------------------------------------- /custom_components/llm_conversation_assist/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzz765/hass_llm_assist/HEAD/custom_components/llm_conversation_assist/translations/en.json -------------------------------------------------------------------------------- /custom_components/llm_conversation_assist/translations/zh-Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzz765/hass_llm_assist/HEAD/custom_components/llm_conversation_assist/translations/zh-Hans.json --------------------------------------------------------------------------------