Neural Programmers </>
前往频道在 Telegram
We Are Programmers Across The World We're Developing Some Useful Projects Together. Wish You Get Good Time With Us! Group @Neural_Group
显示更多6 872
订阅者
无数据24 小时
+87 天
-1030 天
帖子存档
New Updated Chat Ai Api
Endpoint = http://216.98.10.228:5000/gpt?ask=tell%20me%20a%20coder%20joke
Python Example
🥲for those who are asking
import requests
url = "http://216.98.10.228:5000/gpt"
params = {
"ask": "hello world"
}
response = requests.get(url, params=params)
data = response.json()
print(data)