Spaces:
Build error
Build error
metadata
title: Mllm Washed
emoji: π
colorFrom: yellow
colorTo: indigo
sdk: docker
pinned: false
license: wtfpl
This is a templated Space for Shiny for Python.
To get started with a new app do the following:
- Install Shiny with
pip install shiny
- Create a new app with
shiny create .
- 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()