Files
ha-text-ai/custom_components/ha_text_ai/translations/en.json
T

182 lines
7.2 KiB
JSON
Raw Normal View History

2024-11-18 00:43:28 +03:00
{
2024-11-19 16:40:56 +03:00
"config": {
2024-11-19 16:53:27 +03:00
"step": {
"user": {
"title": "Set up HA Text AI",
2024-11-22 01:34:47 +03:00
"description": "Configure your AI integration with OpenAI or Anthropic providers.",
2024-11-19 16:53:27 +03:00
"data": {
2024-11-22 01:34:47 +03:00
"api_provider": "Select API Provider",
2024-11-20 01:02:27 +03:00
"api_key": "API key for authentication (required)",
2024-11-22 01:34:47 +03:00
"model": "AI model to use (provider-specific)",
2024-11-20 01:02:27 +03:00
"temperature": "Response creativity (0-2, lower = more focused and consistent)",
"max_tokens": "Maximum response length (1-4096 tokens)",
2024-11-22 01:34:47 +03:00
"api_endpoint": "Custom API endpoint URL (optional)",
2024-11-23 18:50:48 +03:00
"request_interval": "Minimum time between requests in seconds (0.1-60)",
2024-11-23 00:36:58 +03:00
"name": "Name for this integration instance (e.g., 'GPT Assistant', 'Claude Helper')"
2024-11-19 16:53:27 +03:00
}
2024-11-19 16:40:56 +03:00
}
2024-11-19 18:53:51 +03:00
},
"error": {
2024-11-23 00:36:58 +03:00
"invalid_name": "Invalid integration name",
2024-11-20 01:02:27 +03:00
"invalid_auth": "Authentication failed - check your API key",
"invalid_api_key": "Invalid API key - please verify your credentials",
"cannot_connect": "Connection failed - check endpoint and network status",
2024-11-22 01:34:47 +03:00
"invalid_model": "Model unavailable or not supported by the selected provider",
2024-11-20 01:02:27 +03:00
"rate_limit": "Rate limit exceeded - please reduce request frequency",
"api_error": "API service error - check provider status",
"timeout": "Request timeout - server not responding",
"queue_full": "Request queue full - try again later",
"invalid_url_format": "Invalid API endpoint URL format",
"invalid_input": "Invalid configuration parameters",
2024-11-23 18:50:48 +03:00
"invalid_parameters": "Invalid service parameters provided",
"service_unavailable": "Service temporarily unavailable",
"context_length": "Maximum context length exceeded",
2024-11-20 01:02:27 +03:00
"unknown": "Unexpected error - check logs for details"
2024-11-18 00:43:28 +03:00
}
2024-11-19 16:40:56 +03:00
},
"options": {
2024-11-19 16:53:27 +03:00
"step": {
"init": {
2024-11-20 01:02:27 +03:00
"title": "HA Text AI Settings",
2024-11-22 01:34:47 +03:00
"description": "Adjust your AI integration parameters",
2024-11-19 16:53:27 +03:00
"data": {
2024-11-22 01:34:47 +03:00
"model": "Select AI model (provider-specific)",
"temperature": "Response creativity (0-2)",
2024-11-23 18:50:48 +03:00
"max_tokens": "Maximum response length in tokens (1-4096)",
"request_interval": "Minimum seconds between requests (0.1-60)"
2024-11-19 16:53:27 +03:00
}
}
}
},
"services": {
"ask_question": {
"name": "Ask Question",
2024-11-22 01:34:47 +03:00
"description": "Send a question to the AI model and get a detailed response.",
2024-11-19 18:53:51 +03:00
"fields": {
2024-11-19 16:53:27 +03:00
"question": {
"name": "Question",
2024-11-22 01:34:47 +03:00
"description": "Your question or prompt for the AI model"
2024-11-19 18:53:51 +03:00
},
2024-11-23 18:50:48 +03:00
"system_prompt": {
"name": "System Prompt",
"description": "Optional context or instructions for this specific question"
},
2024-11-19 18:53:51 +03:00
"model": {
"name": "Model",
2024-11-22 01:34:47 +03:00
"description": "Optional specific AI model for this request"
2024-11-19 18:53:51 +03:00
},
"temperature": {
"name": "Temperature",
2024-11-22 01:34:47 +03:00
"description": "Optional creativity setting (0-2)"
2024-11-19 18:53:51 +03:00
},
"max_tokens": {
"name": "Max Tokens",
2024-11-20 01:02:27 +03:00
"description": "Optional maximum response length (1-4096 tokens)"
2024-11-19 16:53:27 +03:00
}
}
2024-11-23 18:50:48 +03:00
},
"clear_history": {
"name": "Clear History",
"description": "Delete all stored questions and responses from the conversation history."
},
"get_history": {
"name": "Get History",
"description": "Retrieve recent conversation history with optional filtering.",
"fields": {
"limit": {
"name": "Limit",
"description": "Maximum number of entries to return (1-100)"
},
"start_date": {
"name": "Start Date",
"description": "Optional date to filter history from"
},
"include_metadata": {
"name": "Include Metadata",
"description": "Include additional response metadata"
},
"sort_order": {
"name": "Sort Order",
"description": "Order of results (asc/desc)"
}
}
},
"set_system_prompt": {
"name": "Set System Prompt",
"description": "Set default system behavior instructions for all future conversations.",
"fields": {
"prompt": {
"name": "System Prompt",
"description": "Instructions that define how the AI should behave"
}
}
2024-11-19 16:53:27 +03:00
}
2024-11-22 16:58:22 +03:00
},
"entity": {
"sensor": {
"ha_text_ai": {
2024-11-23 00:36:58 +03:00
"name": "{name}",
"state": {
"initializing": "Initializing",
"ready": "Ready",
"processing": "Processing",
"error": "Error",
"disconnected": "Disconnected",
2024-11-23 18:50:48 +03:00
"rate_limited": "Rate Limited",
"maintenance": "Maintenance",
"retrying": "Retrying",
"queued": "Queued",
"updating": "Updating"
},
"state_attributes": {
2024-11-23 18:57:02 +03:00
"question": {
2024-11-23 19:03:06 +03:00
"name": "Last Question"
2024-11-23 18:57:02 +03:00
},
"response": {
2024-11-23 19:03:06 +03:00
"name": "Last Response"
2024-11-23 18:57:02 +03:00
},
"last_updated": {
2024-11-23 19:03:06 +03:00
"name": "Last Updated"
2024-11-23 18:57:02 +03:00
},
"model": {
2024-11-23 19:03:06 +03:00
"name": "Model"
2024-11-23 18:57:02 +03:00
},
"temperature": {
2024-11-23 19:03:06 +03:00
"name": "Temperature"
2024-11-23 18:57:02 +03:00
},
"max_tokens": {
2024-11-23 19:03:06 +03:00
"name": "Max Tokens"
2024-11-23 18:57:02 +03:00
},
"total_responses": {
2024-11-23 19:03:06 +03:00
"name": "Total Responses"
2024-11-23 18:57:02 +03:00
},
"system_prompt": {
2024-11-23 19:03:06 +03:00
"name": "System Prompt"
2024-11-23 18:57:02 +03:00
},
"response_time": {
2024-11-23 19:03:06 +03:00
"name": "Response Time"
2024-11-23 18:57:02 +03:00
},
"queue_size": {
2024-11-23 19:03:06 +03:00
"name": "Queue Size"
2024-11-23 18:57:02 +03:00
},
"api_status": {
2024-11-23 19:03:06 +03:00
"name": "API Status"
2024-11-23 18:57:02 +03:00
},
"error_count": {
2024-11-23 19:03:06 +03:00
"name": "Error Count"
2024-11-23 18:57:02 +03:00
},
"last_error": {
2024-11-23 19:03:06 +03:00
"name": "Last Error"
2024-11-23 18:57:02 +03:00
},
"tokens_used": {
2024-11-23 19:03:06 +03:00
"name": "Tokens Used"
2024-11-23 18:57:02 +03:00
},
"request_count": {
2024-11-23 19:03:06 +03:00
"name": "Request Count"
2024-11-23 18:57:02 +03:00
}
2024-11-23 00:36:58 +03:00
}
2024-11-22 16:58:22 +03:00
}
}
2024-11-19 14:00:33 +03:00
}
2024-11-14 18:35:18 +03:00
}