Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -43,14 +43,16 @@ def generate(description):
|
|
43 |
|
44 |
|
45 |
# Ссылка на файл CSS
|
46 |
-
css_url = "https://
|
47 |
|
48 |
# Получение CSS по ссылке
|
49 |
response = requests.get(css_url)
|
50 |
-
css = response.text
|
|
|
51 |
|
52 |
# ui
|
53 |
with gr.Blocks(css=css) as demo:
|
|
|
54 |
with gr.Tab("Исправление опечаток"):
|
55 |
with gr.Row():
|
56 |
promt = gr.Textbox(show_label=True, label="Запрос", lines=3, placeholder="Привет как делпа ?")
|
|
|
43 |
|
44 |
|
45 |
# Ссылка на файл CSS
|
46 |
+
css_url = "https://neurixyufi-aihub.static.hf.space/style.css"
|
47 |
|
48 |
# Получение CSS по ссылке
|
49 |
response = requests.get(css_url)
|
50 |
+
css = response.text + " .gradio-container{max-width: 700px !important} h1{text-align:center}"
|
51 |
+
|
52 |
|
53 |
# ui
|
54 |
with gr.Blocks(css=css) as demo:
|
55 |
+
gr.Markdown("# Исправление опечаток")
|
56 |
with gr.Tab("Исправление опечаток"):
|
57 |
with gr.Row():
|
58 |
promt = gr.Textbox(show_label=True, label="Запрос", lines=3, placeholder="Привет как делпа ?")
|