mirror of
https://github.com/smkrv/ha-text-ai.git
synced 2026-07-21 22:54:00 +08:00
Add per-instance boolean option to allow private IP endpoints and HTTP scheme for self-hosted LLM proxies (LiteLLM, Ollama, vLLM, etc.). - New CONF_ALLOW_LOCAL_NETWORK config option (default: false) - When enabled: allows RFC1918 private IPs and HTTP endpoints - When disabled: full SSRF protection preserved (HTTPS + public IPs only) - Multicast and unspecified addresses blocked regardless of setting - Warning logged when local network mode is active - Checkbox added to ConfigFlow and OptionsFlow UI - Translations for all 8 languages Closes #9
20 lines
525 B
JSON
20 lines
525 B
JSON
{
|
|
"domain": "ha_text_ai",
|
|
"name": "HA Text AI",
|
|
"after_dependencies": ["http"],
|
|
"codeowners": ["@smkrv"],
|
|
"config_flow": true,
|
|
"dependencies": [],
|
|
"documentation": "https://github.com/smkrv/ha-text-ai",
|
|
"integration_type": "service",
|
|
"iot_class": "cloud_polling",
|
|
"issue_tracker": "https://github.com/smkrv/ha-text-ai/issues",
|
|
"loggers": ["custom_components.ha_text_ai"],
|
|
"requirements": [
|
|
"aiofiles>=23.0.0",
|
|
"google-genai>=1.16.0"
|
|
],
|
|
"single_config_entry": false,
|
|
"version": "2.4.1"
|
|
}
|