| 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()) | |
| 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()) | |