File size: 190 Bytes
a34aae9
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import gradio as gr

class KNN_UI():
    def get_interface(self) -> gr.Blocks:
        with gr.Blocks() as interface:
            gr.Markdown("hello world!")

        return interface