Spaces:
Runtime error
Runtime error
| import gradio as gr | |
| from transformers.tools.base import launch_gradio_demo | |
| # Version: 2.0.0 - Fixed deprecated transformers.tools import, updated Gradio | |
| iface = gr.Interface( | |
| fn=launch_gradio_demo, | |
| inputs=gr.Textbox(lines=3, label="Input"), | |
| outputs=gr.Textbox(label="Output"), | |
| title="word-counter-tool", | |
| description="word counter " | |
| ) | |
| if __name__ == "__main__": | |
| iface.launch() | |