Ana SayfaRandevu
Topluluk

Acik Kaynak Kutuphanesi

VerimliAI tarafindan gelistirilen ucretsiz AI otomasyon araclari, kod sablonlari ve entegrasyon betikleri. GitHub'da yildizlayin.

Instagram DM Karsilama Python Betigi
Python
# VerimliAI - Temel Instagram DM Karsilama Botu
# Gereksinimler: pip install requests flask

from flask import Flask, request, jsonify
import requests, os

app = Flask(__name__)
OPENAI_KEY = os.getenv("OPENAI_API_KEY")

def get_ai_response(message):
    r = requests.post("https://api.openai.com/v1/chat/completions",
        headers={"Authorization": f"Bearer {OPENAI_KEY}"},
        json={"model": "gpt-4o", "messages": [{"role": "user", "content": message}]})
    return r.json()["choices"][0]["message"]["content"]

@app.route("/webhook", methods=["POST"])
def webhook():
    msg = request.json.get("message")
    reply = get_ai_response(msg)
    return jsonify({"reply": reply})

if __name__ == "__main__": app.run(port=5000)
Make.com Esnaf Otomasyonu JSON Sablonu
JSON
{
  "name": "E-Ticaret Tam Otomasyon Paketi",
  "modules": [
    { "id": 1, "type": "webhook", "name": "Instagram DM Gelen Mesaj" },
    { "id": 2, "type": "openai", "name": "GPT-4o Yanit Uretimi", "model": "gpt-4o" },
    { "id": 3, "type": "http", "name": "Shopier Odeme Linki", "url": "https://api.shopier.com/v1/payments" },
    { "id": 4, "type": "googleSheets", "name": "Siparis Log Kaydi" }
  ]
}
Profesyonel Cozum Icin Randevu Alin