Spaces:
Runtime error
Runtime error
| import gradio as gr | |
| title = "Ask Rick a Question" | |
| description = """ | |
| The bot was trained to answer questions based on Rick and Morty dialogues. Ask Rick anything! | |
| <img src="https://huggingface.co/spaces/course-demos/Rick_and_Morty_QA/resolve/main/rick.png" width=200px> | |
| """ | |
| article = "Check out [the original Rick and Morty Bot](https://huggingface.co/spaces/kingabzpro/Rick_and_Morty_Bot) that this demo is based off of." | |
| gr.Interface( | |
| fn=predict, | |
| inputs="textbox", | |
| outputs="text", | |
| title=title, | |
| description=description, | |
| article=article, | |
| examples=[["What are you doing?"], ["Where should we time travel to?"]], | |
| ).launch() |