znation's picture
znation HF staff
let's try this
f624d68
raw
history blame
441 Bytes
import gradio as gr
import list_repos
import refresh_lists
def greet(name):
refresh_repos()
refresh_files()
return "Hello " + name + "!!"
def refresh_repos(progress=gr.Progress(track_tqdm=True)):
list_repos.write_repos_to_db()
def refresh_files(progress=gr.Progress(track_tqdm=True)):
while True:
refresh_lists.refresh_oldest_repo()
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()