w63papp/AIWriting
0
1#libraries2import gradio as gr3from gradio.mix import Parallel4 5#variables, functions and parameters6model1 = gr.Interface.load("huggingface/gpt2")7model2 = gr.Interface.load("huggingface/EleutherAI/gpt-j-6B")8model3 = gr.Interface.load("huggingface/EleutherAI/gpt-neo-1.3B")9 10#functions, parameters and variables11gr.Parallel(model1, model2, model3).launch()