Files
ha-text-ai/custom_components/ha_text_ai/const.py
T

14 lines
369 B
Python
Raw Normal View History

2024-11-15 00:59:39 +03:00
"""Constants for the HA Text AI Integration."""
DOMAIN = "ha_text_ai"
2024-11-14 18:30:03 +03:00
2024-11-15 00:59:39 +03:00
CONF_API_KEY = "api_key"
CONF_API_BASE = "api_base"
CONF_REQUEST_INTERVAL = "request_interval"
2024-11-14 18:30:03 +03:00
2024-11-15 00:59:39 +03:00
DEFAULT_API_BASE = "https://api.openai.com/v1"
DEFAULT_REQUEST_INTERVAL = 5 # 5 seconds
# Text Helper related
TEXT_HELPER_MAX_LENGTH = 65536
2024-11-14 18:30:03 +03:00
TEXT_HELPER_PREFIX = "text_ai_response_"