File size: 883 Bytes
71a7938
 
 
 
 
 
 
8e9388d
71a7938
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import requests
import json

"""
Contains the example code to retrieve response from the server in python-requests"""

## without previous_state
url = "https://arpit-bansal-healthbridge.hf.space/"
headers = {
    "accept": "application/json",
    "Content-Type": "application/json"
}
data = {
    "query": "what's my name?"
}

response = requests.post(url, headers=headers, json=data)

print(response.json())

## with previous_state

url = "http://localhost:8000/retrieve"
headers = {
    "accept": "application/json",
    "Content-Type": "application/json"
}
data = {
    "previous_state": [
        {"message": "hi", "response": "Hi there! How can I help you today?\n"},
        {"message": "my name is arpit", "response": "hi arpit.  What's up with you?\n"}
    ],
    "query": "what's my name?"
}

response = requests.post(url, headers=headers, json=data)

print(response.json())