File size: 678 Bytes
0a23c0f
 
 
 
391138e
 
 
0a23c0f
 
 
 
391138e
 
0a23c0f
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import gradio as gr

def create_interface():
    title = "Empowering Everything with AI"
    subtitle = "We believe in empowering everything through the transformative power of AI. Just like a hydrangea, where many people come together to create a new society."
    description = "Join us in building a future where AI connects and enhances every aspect of life."
    image_path = "image.jpeg"  # Path to the uploaded image

    with gr.Blocks() as demo:
        gr.Markdown(f"# {title}")
        gr.Markdown(subtitle)
        gr.Markdown(description)
        gr.Image(image_path)
    
    return demo

if __name__ == "__main__":
    demo = create_interface()
    demo.launch()