import gradio as gr title = """

Chaten und zeichnen

""" description = """\

Aktuelle Modelle: OpenAI und Modelle von Hugging Face: Stable Diffusion
Disclaimer: Die hier verwendeten Modelle sind Modelle vom Hugging Face Hub. Kommerzieller Gebrauch ist ausdrücklich verboten. Der Output des Modells ist nicht zensiert und die Meinungen im Output entsprechen nicht unbedingt der des Authors dieser App. Gebrauch auf eigene Gefahr!

""" description2 = "Information: Hier wird ein Large Language Model (LLM) zum Zeichnen verwendet. Zur Zeit wird hier Stable Diffusion verwendet.\n\n" description_top = """\ Du kannst mit einer KI chatten oder dir etwas zeichnen lassen.
Dafür musst du dich zunächst mit einem speziellen Wort anmelden. Das Wort findets du direkt über dem Chatbot im Moodle Kurs. Dies ist leider nötig, um Mißbrauch zu vermeiden. Du kannst zwischen einem HF Modell (von Hugging Face) oder ChatGPT von OpenAI wählen. Die Option ein Bild oder ein Dokument hochzuladen und analysieren zu lassen, bietet nur das Modell von OpenAI.
Bedienungsanleitung:
""" CONCURRENT_COUNT = 100 ALREADY_CONVERTED_MARK = "" #Theme small_and_beautiful_theme = gr.themes.Soft( primary_hue=gr.themes.Color( c50="#303030", # Dunkler Hintergrund c100="#383838", # Etwas hellerer Hintergrund c200="#D67FFF", # Hauptakzentfarbe c300="#505050", # Dunkler Hintergrund c400="#585858", # Dunkler Hintergrund c500="#606060", # Dunkler Hintergrund c600="#686868", # Dunkler Hintergrund c700="#707070", # Dunkler Hintergrund c800="#787878", # Dunkler Hintergrund c900="#D67FFF", # Hauptakzentfarbe c950="#D67FFF", # Hauptakzentfarbe ), secondary_hue=gr.themes.Color( # Dunkle Sekundärfarben c50="#576b95", c100="#576b95", c200="#576b95", c300="#576b95", c400="#576b95", c500="#576b95", c600="#576b95", c700="#576b95", c800="#576b95", c900="#576b95", c950="#576b95", ), neutral_hue=gr.themes.Color( # Dunkle Neutrale Farben c50="#393939", c100="#ffffff", c200="#576b95", c300="#576b95", c400="#576b95", c500="#576b95", c600="#576b95", c700="#576b95", c800="#576b95", c900="#576b95", c950="#576b95", ), radius_size=gr.themes.sizes.radius_sm, ).set( # Anpassungen der Button- und Hintergrundfarben button_primary_background_fill="#B808AD", button_primary_background_fill_dark="#6501AD", background_fill_primary="#303030", # Dunkler Hintergrund für den Light Mode background_fill_primary_dark="#303030", # Dunkler Hintergrund für den Dark Mode # Weitere Anpassungen ) themeAlex = gr.themes.Soft( primary_hue="purple", secondary_hue="purple", neutral_hue="stone", ).set( body_text_color='*neutral_100', background_fill_primary='*neutral_950', background_fill_secondary='*neutral_900', border_color_accent='*neutral_600', border_color_primary='*neutral_700', color_accent_soft='*neutral_700', link_text_color='*secondary_500', link_text_color_active='*secondary_500', link_text_color_hover='*secondary_400', link_text_color_visited='*secondary_600', code_background_fill='*neutral_800', block_background_fill='*neutral_800', block_label_background_fill='*primary_600', block_label_text_color='*neutral_50', block_label_text_color_dark='*neutral_50', block_title_text_color='*neutral_50', checkbox_background_color='*neutral_800', checkbox_background_color_selected='*primary_700', checkbox_border_color='*neutral_600', checkbox_border_color_focus='*primary_600', checkbox_border_color_hover='*neutral_600', checkbox_border_color_selected='*primary_700', checkbox_border_width='*input_border_width', checkbox_label_background_fill_selected='*primary_600', checkbox_label_text_color_selected='*checkbox_label_text_color', error_background_fill='*background_fill_primary', input_background_fill='*neutral_700', input_background_fill_focus='*secondary_600', input_border_color='*border_color_primary', input_border_color_focus='*neutral_700', input_placeholder_color='*neutral_500', slider_color='*primary_600', stat_background_fill='*primary_500', table_border_color='*neutral_700', table_even_background_fill='*neutral_950', table_odd_background_fill='*neutral_900', button_primary_background_fill='*primary_700', button_primary_background_fill_hover='*primary_500', button_primary_border_color='*primary_600', button_secondary_background_fill='*neutral_600', button_secondary_background_fill_hover='*primary_500', button_secondary_border_color='*neutral_600', button_secondary_text_color='*neutral_50' )