CoolFace
Apppublic

Washedashore/mllm_washed

sourceHugging Facewtfplupdated 2y agoView on Hugging Face
0likes
App README

This is a templated Space for Shiny for Python.

To get started with a new app do the following:

1) Install Shiny with pip install shiny 2) Create a new app with shiny create . 3) Then run the app with shiny run --reload

To learn more about this framework please see the Documentation. import gradio as gr

def echo(message, history): return message

demo = gr.ChatInterface(fn=echo, examples=["hello", "hola", "merhaba"], title="Echo Bot") demo.launch()