T2K-Demo / app.py
Felix92's picture
Disable demo
1a2c2d7
import gradio as gr
theme = gr.themes.Soft(
primary_hue="violet",
).set(
body_text_color_dark='*neutral_800',
background_fill_primary_dark='*neutral_50',
background_fill_secondary_dark='*neutral_50',
border_color_accent_dark='*primary_300',
border_color_primary_dark='*neutral_200',
color_accent_soft_dark='*primary_50',
link_text_color_dark='*secondary_600',
link_text_color_active_dark='*secondary_600',
link_text_color_hover_dark='*secondary_700',
link_text_color_visited_dark='*secondary_500',
code_background_fill_dark='*neutral_100',
block_background_fill_dark='white',
block_label_background_fill_dark='*primary_100',
block_label_text_color_dark='*primary_500',
block_title_text_color_dark='*primary_500',
checkbox_background_color_dark='*background_fill_primary',
checkbox_background_color_selected_dark='*primary_600',
checkbox_border_color_dark='*neutral_100',
checkbox_border_color_focus_dark='*primary_500',
checkbox_border_color_hover_dark='*neutral_300',
checkbox_border_color_selected_dark='*primary_600',
checkbox_border_width_dark='1px',
checkbox_label_background_fill_selected_dark='*primary_500',
checkbox_label_text_color_selected_dark='white',
error_background_fill_dark='#fef2f2',
error_border_color_dark='#b91c1c',
input_background_fill_dark='white',
input_background_fill_focus_dark='*secondary_500',
input_border_color_dark='*neutral_50',
input_border_color_focus_dark='*secondary_300',
input_placeholder_color_dark='*neutral_400',
slider_color_dark='*primary_500',
stat_background_fill_dark='*primary_300',
table_border_color_dark='*neutral_300',
table_even_background_fill_dark='white',
table_odd_background_fill_dark='*neutral_50',
button_primary_background_fill='*primary_600',
button_primary_background_fill_dark='*primary_600',
button_primary_background_fill_hover='*primary_500',
button_primary_border_color_dark='*primary_200',
button_secondary_background_fill='*primary_600',
button_secondary_background_fill_dark='*primary_600',
button_secondary_background_fill_hover='*primary_500',
button_secondary_border_color_dark='*neutral_200',
button_secondary_text_color='white'
)
with gr.Blocks(theme=theme, css="footer{display:none !important}", fill_height=True, fill_width=True) as demo:
gr.Markdown(
"""
<p align="center">
<a href="https://text2knowledge.de/start]">
<img src="https://text2knowledge.de/logo.svg" width="10%" height=10%>
</a>
</p>
"""
)
with gr.Row():
with gr.Column():
gr.Markdown(
value="## Diese Demo wurde mit dem Ende der Smart Country Convention 2024 abgeschaltet.\n## Für eine personalisierte Demonstration schreibt eine E-Mail an [email protected] oder erstellt euch ein Nutzerkonto bei https://portal.text2knowledge.de",
)
if __name__ == "__main__":
demo.launch()