Compare commits

..
4 Commits
Author SHA1 Message Date
SMKRV 34e93e0045 Release v1.0.1b 2024-11-19 00:53:21 +03:00
SMKRV 34bfd7dfe1 Release v1.0.1b 2024-11-19 00:51:57 +03:00
SMKRV e3487a48cb Release v1.0.1a 2024-11-19 00:37:43 +03:00
SMKRV 72a98d0076 bugfix 2024-11-19 00:34:14 +03:00
5 changed files with 10 additions and 14 deletions
+8 -8
View File
@@ -53,7 +53,7 @@ cd ~/.homeassistant
mkdir -p custom_components
# 3. Clone the repository
git clone https://github.com/smkrv/ha-text-ai.git custom_components/ha-text-ai
git clone https://github.com/smkrv/ha-text-ai.git custom_components/ha_text_ai
# 4. Restart Home Assistant
```
@@ -63,14 +63,14 @@ git clone https://github.com/smkrv/ha-text-ai.git custom_components/ha-text-ai
### Basic Configuration
```yaml
ha-text-ai:
ha_text_ai:
api_key: your_openai_api_key
model: gpt-3.5-turbo
```
### Advanced Configuration
```yaml
ha-text-ai:
ha_text_ai:
api_key: your_openai_api_key
model: gpt-4
temperature: 0.8
@@ -83,7 +83,7 @@ ha-text-ai:
### Ask Question
```yaml
service: ha-text-ai.ask_question
service: ha_text_ai.ask_question
data:
question: "What's the weather like today?"
model: "gpt-4" # optional
@@ -91,9 +91,9 @@ data:
```
### More Services
- `ha-text-ai.clear_history`: Reset conversation history
- `ha-text-ai.get_history`: Retrieve past interactions
- `ha-text-ai.set_system_prompt`: Configure AI behavior
- `ha_text_ai.clear_history`: Reset conversation history
- `ha_text_ai.get_history`: Retrieve past interactions
- `ha_text_ai.set_system_prompt`: Configure AI behavior
## 🔍 Advanced Usage
@@ -105,7 +105,7 @@ automation:
entity_id: binary_sensor.motion
to: 'on'
action:
service: ha-text-ai.ask_question
service: ha_text_ai.ask_question
data:
question: "What should I do when motion is detected?"
```
+1 -1
View File
@@ -1,7 +1,7 @@
"""Constants for the HA text AI integration."""
from homeassistant.const import Platform
DOMAIN = "ha-text-ai"
DOMAIN = "ha_text_ai"
PLATFORMS = [Platform.SENSOR]
# Configuration
+1 -1
View File
@@ -10,6 +10,6 @@
"homekit": {},
"dependencies": [],
"codeowners": ["@smkrv"],
"version": "1.0.0",
"version": "1.0.1b",
"iot_class": "cloud_polling"
}
@@ -1,4 +1,3 @@
# Service to ask a question
ask_question:
name: Ask Question
description: Send a question to the AI and get a response
@@ -47,13 +46,11 @@ ask_question:
max: 4000
step: 1
# Service to clear response history
clear_history:
name: Clear History
description: Clear the stored question and response history
fields: {}
# Service to get response history
get_history:
name: Get History
description: Get the history of questions and responses
@@ -69,7 +66,6 @@ get_history:
max: 100
step: 1
# Service to set system prompt
set_system_prompt:
name: Set System Prompt
description: Set a system prompt that will be used for all future questions
BIN
View File
Binary file not shown.