You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
274 B
14 lines
274 B
import requests
|
|
import time
|
|
|
|
data = {"title": "大型商业建筑人员疏散设计研究"}
|
|
|
|
for i in range(1):
|
|
start = time.time()
|
|
|
|
res = requests.post('http://104.244.89.190:14002/chat', json=data)
|
|
end = time.time()
|
|
print(end - start)
|
|
|
|
|
|
print(res.text)
|