1
0
mirror of https://github.com/home-assistant/core.git synced 2026-07-02 12:17:30 +01:00
Files
core/homeassistant/components/ovhcloud_ai_endpoints/const.py
T
2026-05-26 22:38:18 +02:00

17 lines
449 B
Python

"""Constants for the OVHcloud AI Endpoints integration."""
import logging
from homeassistant.const import CONF_LLM_HASS_API, CONF_PROMPT
from homeassistant.helpers import llm
DOMAIN = "ovhcloud_ai_endpoints"
LOGGER = logging.getLogger(__package__)
BASE_URL = "https://oai.endpoints.kepler.ai.cloud.ovh.net/v1"
RECOMMENDED_CONVERSATION_OPTIONS = {
CONF_LLM_HASS_API: [llm.LLM_API_ASSIST],
CONF_PROMPT: llm.DEFAULT_INSTRUCTIONS_PROMPT,
}