We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b77fb8 commit d2e2c9fCopy full SHA for d2e2c9f
custom_components/openai_tts/config_flow.py
@@ -20,7 +20,7 @@ async def validate_api_key(api_key: str):
20
"""Validate the API key format."""
21
if api_key is None:
22
raise WrongAPIKey("API key is required")
23
- if not (51 <= len(api_key) <= 56):
+ if not (51 <= len(api_key) <= 70):
24
raise WrongAPIKey("Invalid API key length")
25
26
async def validate_user_input(user_input: dict):
0 commit comments