Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the OpenAI Conversation integration."""
2 
3 import logging
4 
5 DOMAIN = "openai_conversation"
6 LOGGER = logging.getLogger(__package__)
7 
8 CONF_RECOMMENDED = "recommended"
9 CONF_PROMPT = "prompt"
10 CONF_CHAT_MODEL = "chat_model"
11 RECOMMENDED_CHAT_MODEL = "gpt-4o-mini"
12 CONF_MAX_TOKENS = "max_tokens"
13 RECOMMENDED_MAX_TOKENS = 150
14 CONF_TOP_P = "top_p"
15 RECOMMENDED_TOP_P = 1.0
16 CONF_TEMPERATURE = "temperature"
17 RECOMMENDED_TEMPERATURE = 1.0