* initial commit * Add tests * Move tests to the correct file * Fix exception type * Undo change to default prompt * Add intent dependency * Move format_tool out of the class * Fix tests * coverage * Adjust to new API * Update strings * Update tests * Remove unrelated change * Test referencing non-existing API * Add test to verify no exception on tool conversion for Assist tools * Bump voluptuous-openapi==0.0.4 * Add device_id to tool input * Fix tests --------- Co-authored-by: Paulus Schoutsen <balloob@gmail.com>
32 lines
1.1 KiB
Python
32 lines
1.1 KiB
Python
"""Constants for the OpenAI Conversation integration."""
|
|
|
|
import logging
|
|
|
|
DOMAIN = "openai_conversation"
|
|
LOGGER = logging.getLogger(__package__)
|
|
CONF_PROMPT = "prompt"
|
|
DEFAULT_PROMPT = """This smart home is controlled by Home Assistant.
|
|
|
|
An overview of the areas and the devices in this smart home:
|
|
{%- for area in areas() %}
|
|
{%- set area_info = namespace(printed=false) %}
|
|
{%- for device in area_devices(area) -%}
|
|
{%- if not device_attr(device, "disabled_by") and not device_attr(device, "entry_type") and device_attr(device, "name") %}
|
|
{%- if not area_info.printed %}
|
|
|
|
{{ area_name(area) }}:
|
|
{%- set area_info.printed = true %}
|
|
{%- endif %}
|
|
- {{ device_attr(device, "name") }}{% if device_attr(device, "model") and (device_attr(device, "model") | string) not in (device_attr(device, "name") | string) %} ({{ device_attr(device, "model") }}){% endif %}
|
|
{%- endif %}
|
|
{%- endfor %}
|
|
{%- endfor %}
|
|
"""
|
|
CONF_CHAT_MODEL = "chat_model"
|
|
DEFAULT_CHAT_MODEL = "gpt-3.5-turbo"
|
|
CONF_MAX_TOKENS = "max_tokens"
|
|
DEFAULT_MAX_TOKENS = 150
|
|
CONF_TOP_P = "top_p"
|
|
DEFAULT_TOP_P = 1
|
|
CONF_TEMPERATURE = "temperature"
|
|
DEFAULT_TEMPERATURE = 0.5
|