""" File: description.py Author: Elena Ryumina and Dmitry Ryumin Description: Project description for the Gradio app. License: MIT License """ # Importing necessary components for the Gradio app from app.config import config_data TEMPLATE = """\

OCEAN-AI {description}.

{version_label} GitHub
""" DESCRIPTIONS = [ TEMPLATE.format( description=config_data.InformationMessages_DESCRIPTIONS[0], version=config_data.AppSettings_APP_VERSION, version_label="Version", ), TEMPLATE.format( description=config_data.InformationMessages_DESCRIPTIONS[1], version=config_data.AppSettings_APP_VERSION, version_label="Версия", ), ]