├── INFO.md ├── README.md ├── custom_components └── openai_response │ ├── __init__.py │ ├── manifest.json │ └── sensor.py └── misc ├── Capture1.jpg ├── Card.PNG ├── ChatGPT.png └── ChatGPT_image.PNG /INFO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hassassistant/openai_response/HEAD/INFO.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hassassistant/openai_response/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/openai_response/__init__.py: -------------------------------------------------------------------------------- 1 | """OpenAI Response custom component.""" 2 | -------------------------------------------------------------------------------- /custom_components/openai_response/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hassassistant/openai_response/HEAD/custom_components/openai_response/manifest.json -------------------------------------------------------------------------------- /custom_components/openai_response/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hassassistant/openai_response/HEAD/custom_components/openai_response/sensor.py -------------------------------------------------------------------------------- /misc/Capture1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hassassistant/openai_response/HEAD/misc/Capture1.jpg -------------------------------------------------------------------------------- /misc/Card.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hassassistant/openai_response/HEAD/misc/Card.PNG -------------------------------------------------------------------------------- /misc/ChatGPT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hassassistant/openai_response/HEAD/misc/ChatGPT.png -------------------------------------------------------------------------------- /misc/ChatGPT_image.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hassassistant/openai_response/HEAD/misc/ChatGPT_image.PNG --------------------------------------------------------------------------------