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)