Spaces:
Sleeping
Sleeping
import gradio as gr | |
def execute(code, lang): | |
#return "Typeof code : " + str(type(code) + "\nCode : " + str(code) + "\nTypeof language : " + type(lang) + "\nLanguage : " + str(lang) | |
return f"Typeof code : {str(type(code))}\nCode : {str(code)}\nTypeof lang : {str(type(lang))}\nLanguage : {str(lang)}" | |
demo = gr.Interface( | |
fn=execute, | |
inputs=[ | |
gr.Textbox( | |
show_label=True, | |
label="Code", | |
max_lines=4_294_967_295, | |
lines=4_294_967_295 | |
), | |
gr.Dropdown( | |
show_label=True, | |
label="Language", | |
choices=["Python"] | |
) | |
], | |
outputs="text" | |
) | |
demo.launch(debug=True) |