File size: 233 Bytes
0032d0a
 
 
115460a
0032d0a
 
115460a
0032d0a
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import requests
import json

url = 'http://localhost:10008/chat'

data = {
    'phrase': 'a spiece 和一只狼'
}

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

response_data = response.json()

print(json.dumps(response_data, indent=4))