File size: 257 Bytes
a67dbb6
cf8d78e
 
a67dbb6
 
 
 
 
 
cf8d78e
1
2
3
4
5
6
7
8
9
10
import random
import gradio as gr

def alternatingly_agree(message, history):
    if len(history) % 2 == 0:
        return f"Yes, I do think that '{message}'"
    else:
        return "I don't think so"

gr.Interface.load("models/bigscience/bloom").launch()