Spaces:
Runtime error
Runtime error
File size: 296 Bytes
1d59756 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import os
import gradio as gr
def main():
demo = gr.load(
src="spaces",
name="NawazHanzla/taskmaker.ai",
token=os.environ["HUGGING_FACE_TOKEN"]
)
demo.queue(default_concurrency_limit=3, max_size=20)
demo.launch()
if __name__ == "__main__":
main()
|