HowardZhangdqs's picture
fix: update papers while the date is specified
6c0c3bb
raw
history blame contribute delete
236 Bytes
import gradio as gr
from interface import create_interface
gr.close_all()
demo = create_interface()
if __name__ == "__main__":
demo.launch(
server_name="localhost",
# server_port=7860,
# share=True
)