"""Constants for OpenClaw Conversation integration.""" DOMAIN = "openclaw_conversation" # Configuration keys CONF_OPENCLAW_HOST = "openclaw_host" CONF_OPENCLAW_PORT = "openclaw_port" CONF_AGENT_NAME = "agent_name" CONF_TIMEOUT = "timeout" # Defaults DEFAULT_HOST = "10.0.0.101" DEFAULT_PORT = 8081 # OpenClaw HTTP Bridge (not 8080 gateway) DEFAULT_AGENT = "main" DEFAULT_TIMEOUT = 120 # API endpoints OPENCLAW_API_PATH = "/api/agent/message" # Service names SERVICE_PROCESS = "process" # Attributes ATTR_MESSAGE = "message" ATTR_RESPONSE = "response" ATTR_AGENT = "agent"