File size: 764 Bytes
5e82ff3
6f6920c
5e82ff3
2f7fd62
5e82ff3
8604a93
 
6f6920c
85cff44
 
 
2f7fd62
6f6920c
85cff44
06df53b
6f6920c
14d0df8
06df53b
6f6920c
 
ceb3cb1
8604a93
6f6920c
 
06df53b
6f6920c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import gradio as gr
from huggingface_hub import WebhooksServer, WebhookPayload

# from model import model

webhook_payload = None

with gr.Blocks() as ui:
    p = gr.State(None)
    def update_payload():
        return webhook_payload.json() if webhook_payload is not None else ''
    gr.Markdown(f"## Hugging Face Webhooks Demo\n\n{p.value}")
    progress = gr.Progress(track_tqdm=True)
    ui.load(update_payload, outputs=[p])

# 2. Create WebhooksServer with custom UI and secret
app = WebhooksServer(ui=ui, webhook_secret="test")

@app.add_webhook
async def train(payload: WebhookPayload):
    global webhook_payload
    webhook_payload = payload
    print("Received payload:", payload.dict())
    return payload.dict()

# 5. Start server (optional)
app.run()