Spaces:
Sleeping
Sleeping
import gradio as gr | |
from huggingface_hub import InferenceClient | |
def search(a): | |
return a | |
""" | |
For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface | |
""" | |
demo = gr.Interface( | |
search, | |
outputs="text" | |
) | |
if __name__ == "__main__": | |
demo.launch() |