Spaces:
Runtime error
Runtime error
import gradio as gr | |
iface1 = gr.Interface.load("spaces/mrm8488/GPT-J-6B") | |
iface2 = gr.Interface.load("spaces/akhaliq/T0pp") | |
iface3 = gr.mix.Parallel( | |
iface1, iface2, | |
examples = [ | |
['Which country will win the 2002 World Cup?'], | |
["A is the son's of B's uncle. What is the family relationship between A and B?"], | |
["In 2030, "], | |
], | |
theme="default", | |
css=".footer{display:none !important}") | |
iface3.launch() |