File size: 155 Bytes
1026698 | 1 2 3 4 5 6 7 8 | import requests
resp = requests.post(
"http://0.0.0.0:8000/ask",
json={"question": "What is capital of France?", "top_k": 5}
)
print(resp.json())
|
1026698 | 1 2 3 4 5 6 7 8 | import requests
resp = requests.post(
"http://0.0.0.0:8000/ask",
json={"question": "What is capital of France?", "top_k": 5}
)
print(resp.json())
|