mirror of
https://github.com/Kakune55/PyGetGPT.git
synced 2025-06-29 00:08:04 +08:00
15 lines
211 B
Python
15 lines
211 B
Python
import requests , json
|
|
|
|
|
|
url = "http://localhost:5000/api/user"
|
|
|
|
data = {
|
|
"prompt":"你好",
|
|
"userkey":"5b32f7z1"
|
|
}
|
|
|
|
req = json.loads(requests.post(url=url,json=data).text)
|
|
|
|
print(req["output"])
|
|
|
|
input() |