Spaces:
Runtime error
Runtime error
File size: 267 Bytes
2d3579f a0c8b34 2d3579f b40fb4b 2d3579f a0c8b34 cc09663 a0c8b34 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import gradio as gr
import os
def temp(input_1):
return "Hey"
print(f"System: {os.getenv('SYSTEM')}")
iface = gr.Interface(fn=temp, inputs="sketchpad", outputs="textbox")
print(f"You are in the spaces: {iface.is_space}")
iface.launch(debug=True, share=True)
|