This custom component for Home Assistant allows you to generate text responses using OpenAI's GPT-3 model.
Head to This Link to get you API key from OpenAI.
1. (Manual) Copy the openai_response folder to your Home Assistant's custom_components directory. If you don't have a custom_components directory, create one in the same directory as your configuration.yaml file.
(HACS) Add this repository to HACS. https://github.com/Hassassistant/openai_response
2. Add the following lines to your Home Assistant configuration.yaml file:
sensor:
- platform: openai_response
api_key: YOUR_OPENAI_API_KEY
model: "text-davinci-003" # Optional, defaults to "text-davinci-003"
name: "hassio_openai_response" # Optional, defaults to "hassio_openai_response"
Replace YOUR_OPENAI_API_KEY with your actual OpenAI API key.
3. Restart Home Assistant.
Create an input_text.gpt_input entity in Home Assistant to serve as the input for the GPT-3 model. Add the following lines to your configuration.yaml file:
input_text:
gpt_input:
name: GPT-3 Input
Note you can also create this input_text via the device helpers page!
If you are creating via YAML, you will need to restart again to activate the new entity,
To generate a response from GPT-3, update the input_text.gpt_input entity with the text you want to send to the model. The generated response will be available as an attribute of the sensor.hassio_openai_response entity.
To display the GPT-3 input and response in your Home Assistant frontend, add the following to your ui-lovelace.yaml file or create a card in the Lovelace UI:
type: grid
square: false
columns: 1
cards:
- type: entities
entities:
- entity: input_text.gpt_input
- type: markdown
content: '{{ state_attr(''sensor.hassio_openai_response'', ''response_text'') }}'
title: ChatGPT Response
Now you can type your text in the GPT-3 Input field, and the generated response will be displayed in the response card.
This project is licensed under the MIT License - see the LICENSE file for details.
Disclaimer: This project is not affiliated with or endorsed by OpenAI. Use the GPT-3 API at your own risk, and be aware of the API usage costs associated with the OpenAI API.