search_paper / app.py
jialicheng's picture
Update app.py
b715940 verified
raw
history blame
323 Bytes
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()