Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Anthropic integration."""
2 
3 import logging
4 
5 DOMAIN = "anthropic"
6 LOGGER = logging.getLogger(__package__)
7 
8 CONF_RECOMMENDED = "recommended"
9 CONF_PROMPT = "prompt"
10 CONF_CHAT_MODEL = "chat_model"
11 RECOMMENDED_CHAT_MODEL = "claude-3-haiku-20240307"
12 CONF_MAX_TOKENS = "max_tokens"
13 RECOMMENDED_MAX_TOKENS = 1024
14 CONF_TEMPERATURE = "temperature"
15 RECOMMENDED_TEMPERATURE = 1.0