from typing import Iterable from utils import * from gradio.themes.base import Base from gradio.themes.utils import colors, fonts, sizes import time custom_css = """ body { background-color: #f0f0f0; color: #333; font-family: Arial, sans-serif; } .gr-button { background-color: #4CAF50; color: white; border: none; border-radius: 4px; padding: 10px 20px; cursor: pointer; } .gr-button:hover { background-color: #45a049; } .gr-textbox, .gr-image { margin-top: 10px; } """ header_html = read_md_file_to_string("info.html") beta_header_html = read_md_file_to_string("info(beta).html")