Neural Programmers </>
Ir al canal en Telegram
We Are Programmers Across The World We're Developing Some Useful Projects Together. Wish You Get Good Time With Us! Group @Neural_Group
Mostrar más6 872
Suscriptores
Sin datos24 horas
+87 días
-1030 días
Archivo de publicaciones
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)