Spaces:
Running
Running
File size: 689 Bytes
c0f084a 1bf4da3 c0f084a aa6222e c0f084a aa6222e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
"""
File: description_steps.py
Author: Elena Ryumina and Dmitry Ryumin
Description: Project steps description for the Gradio app.
License: MIT License
"""
# Importing necessary components for the Gradio app
from app.config import config_data
STEPS_TEMPLATE = """\
<h2 align="center">{text}</h2>
"""
STEP_1 = [
STEPS_TEMPLATE.format(
text=config_data.InformationMessages_STEP_1[0],
),
STEPS_TEMPLATE.format(
text=config_data.InformationMessages_STEP_1[1],
),
]
STEP_2 = [
STEPS_TEMPLATE.format(
text=config_data.InformationMessages_STEP_2[0],
),
STEPS_TEMPLATE.format(
text=config_data.InformationMessages_STEP_2[1],
),
]
|