Spaces:
Running
Running
File size: 4,259 Bytes
a7c2cd2 32c2587 61186ad 4a7815d 38695d8 32c2587 61186ad 16eaf19 738289f 61186ad 17145bf 6d086e2 9c8bc16 738289f 9c8bc16 e944263 9c8bc16 ca0973c 9c8bc16 738289f 9c8bc16 501ba98 38bfe69 738289f 06378db 738289f 9c8bc16 738289f 9c8bc16 17145bf 9c8bc16 17145bf 30c85ad 61186ad 30c85ad 32c2587 a7c2cd2 e944263 4db9fc0 32c2587 6020a54 16eaf19 61186ad |
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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 |
import os
from queue import Queue
import gradio as gr
import argilla as rg
from argilla.webhooks import webhook_listener
client = rg.Argilla(
api_url=os.getenv("ARGILLA_API_URL"),
api_key=os.getenv("ARGILLA_API_KEY"),
)
server = rg.get_webhook_server()
incoming_events = Queue()
countries = {
"Argentina": {
"iso": "ARG",
"emoji": "🇦🇷"
},
"Bolivia": {
"iso": "BOL",
"emoji": "🇧🇴"
},
"Chile": {
"iso": "CHL",
"emoji": "🇨🇱"
},
"Colombia": {
"iso": "COL",
"emoji": "🇨🇴"
},
"Costa Rica": {
"iso": "CRI",
"emoji": "🇨🇷"
},
"Cuba": {
"iso": "CUB",
"emoji": "🇨🇺"
},
"Ecuador": {
"iso": "ECU",
"emoji": "🇪🇨"
},
"El Salvador": {
"iso": "SLV",
"emoji": "🇸🇻"
},
"España": {
"iso": "ESP",
"emoji": "🇪🇸"
},
"Guatemala": {
"iso": "GTM",
"emoji": "🇬🇹"
},
"Honduras": {
"iso": "HND",
"emoji": "🇭🇳"
},
"México": {
"iso": "MEX",
"emoji": "🇲🇽"
},
"Nicaragua": {
"iso": "NIC",
"emoji": "🇳🇮"
},
"Panamá": {
"iso": "PAN",
"emoji": "🇵🇦"
},
"Paraguay": {
"iso": "PRY",
"emoji": "🇵🇾"
},
"Perú": {
"iso": "PER",
"emoji": "🇵🇪"
},
"Puerto Rico": {
"iso": "PRI",
"emoji": "🇵🇷"
},
"República Dominicana": {
"iso": "DOM",
"emoji": "🇩🇴"
},
"Uruguay": {
"iso": "URY",
"emoji": "🇺🇾"
},
"Venezuela": {
"iso": "VEN",
"emoji": "🇻🇪"
}
}
@webhook_listener(events=["response.created"])
async def update_validation_space_on_answer(response, type, timestamp):
"""
Webhook listener that triggers when a new response is added to an answering space.
It will automatically update the corresponding validation space with the new response.
"""
try:
incoming_events.put({"event": type, "timestamp": str(timestamp)})
record = response.record
dataset_name = record.dataset.name
if not dataset_name.endswith("Responder"):
print(f"Ignoring event from non-answering dataset: {dataset_name}")
return
country = " ".join(dataset_name.split("-")[0].split(" ")[1:])
print(f"Processing response for country: {country}")
iso = countries[country]["iso"]
emoji = countries[country]["emoji"]
validation_dataset_name = f"{emoji} {country} - {iso} - Responder"
try:
validation_dataset = client.datasets(validation_dataset_name)
print(f"Found validation dataset: {validation_dataset_name}")
except Exception as e:
print(f"Error connecting to validation dataset: {e}")
response_dict = response.to_dict()
answer_1 = response_dict["values"]['answer_1']['value']
answer_2 = response_dict["values"]['answer_2']['value']
answer_3 = response_dict["values"]['answer_3']['value']
original_user_id = str(response.user_id)
new_records = []
for answer in [answer_1, answer_2, answer_3]:
if answer:
validation_record = {
"question": record.fields["question"],
"answer": answer,
"metadata": {
"original_responder_id": original_user_id,
"original_dataset": dataset_name
}
}
new_records.append(answer)
validation_dataset.records.log(records=new_records)
print(f"Added new response to validation space for {country}")
except Exception as e:
print(f"Error in webhook handler: {e}")
incoming_events.put({"event": "error", "error": str(e)})
def read_next_event():
if not incoming_events.empty():
return incoming_events.get()
return {}
with gr.Blocks() as demo:
argilla_server = client.http_client.base_url
gr.Markdown("## Argilla Webhooks - Top Secret")
gr.Timer(1, active=True).tick(read_next_event)
gr.mount_gradio_app(server, demo, path="/")
if __name__ == "__main__":
import uvicorn
uvicorn.run(server, host="0.0.0.0", port=7860) |