MarkoVidrih commited on
Commit
91d36bf
·
verified ·
1 Parent(s): 70f9336

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -460,7 +460,7 @@ def create_ui(app_config: ApplicationConfig):
460
  # Try to convert from camel-case to title-case
461
  implementation_name = app_config.whisper_implementation.title().replace("_", " ").replace("-", " ")
462
 
463
- ui_description = implementation_name + " is a general-purpose speech recognition model. It is trained on a large dataset of diverse "
464
  ui_description += " audio and is also a multi-task model that can perform multilingual speech recognition "
465
  ui_description += " as well as speech translation and language identification. "
466
 
@@ -473,7 +473,7 @@ def create_ui(app_config: ApplicationConfig):
473
  if app_config.input_audio_max_duration > 0:
474
  ui_description += "\n\n" + "Max audio file length: " + str(app_config.input_audio_max_duration) + " s"
475
 
476
- ui_article = "Read the [creatus.ai](https://creatus.ai/)."
477
 
478
  whisper_models = app_config.get_model_names()
479
 
 
460
  # Try to convert from camel-case to title-case
461
  implementation_name = app_config.whisper_implementation.title().replace("_", " ").replace("-", " ")
462
 
463
+ ui_description = " This is a general-purpose speech recognition model. It is trained on a large dataset of diverse "
464
  ui_description += " audio and is also a multi-task model that can perform multilingual speech recognition "
465
  ui_description += " as well as speech translation and language identification. "
466
 
 
473
  if app_config.input_audio_max_duration > 0:
474
  ui_description += "\n\n" + "Max audio file length: " + str(app_config.input_audio_max_duration) + " s"
475
 
476
+ ui_article = "For more free tools [creatus.ai](https://creatus.ai/)."
477
 
478
  whisper_models = app_config.get_model_names()
479