CogSphere / app.py
CognitiveScience's picture
Update app.py
2f624f6
raw
history blame
165 Bytes
import gradio as gr
from bcogsphere import bcs
css="footer {visibility: hidden}"
iface = gr.Interface(fn=bcs, inputs="text", outputs="text", css=css)
iface.launch()