Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,4 +1,11 @@
|
|
1 |
import gradio as gr
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
3 |
def reply(message, history):
|
4 |
purged = client.purge_by_url([message])
|
|
|
1 |
import gradio as gr
|
2 |
+
from fastpurge import FastPurgeClient
|
3 |
+
|
4 |
+
client = FastPurgeClient(
|
5 |
+
auth={
|
6 |
+
|
7 |
+
}
|
8 |
+
)
|
9 |
|
10 |
def reply(message, history):
|
11 |
purged = client.purge_by_url([message])
|