f0ff05a
1
2
3
4
5
6
7
8
9
10
11
12
13
from gradio_client import Client client = Client("https://adrianpalmadev-rag-qa-system.hf.space") result = client.predict( query="Where is the hospital?", top_k=2, umbral=0.5, api_name="/ask" ) print("Respuesta:") print(result)