import gradio as gr def show_message(): message = """

HF Spaces Closed Due to Lack of GPU.

If you are a GPU Provider and would like to provide GPU for this HF Space in exchange for publicity, please contact us on Twitter @artificialguybr.

""" return message iface = gr.Interface(fn=show_message, outputs="html", title="GPU Provider Needed") iface.launch()