Free.ai Slack Integration

Add AI tools directly to your Slack workspace.

كيف يعمل

يربط Free.ai إلى مساحة عمل سلاك باستخدام webhook الواردة. بمجرد الاتصال، يمكنك إطلاق مهام الذكاء الاصطناعي من سلاك وتلقي النتائج مباشرة في قنواتك.

الخطوة 1: الحصول على مفتاحك Free.ai API

  1. تسجيل الدخول إلى your Free.ai account (أو إنشاء واحد مجاني).
  2. اذهب إلى إعدادات المطور وإنشاء مفتاح API.
  3. نسخ المفتاح & mdash; سوف تحتاجه لتشكيل webhook.

الخطوة 2: إنشاء اتصال شبكي تلقائي وارد

  1. In Slack, go to التطبيقات → search for اتصالات الويب الواردةأضف إلى Slack.
  2. اختر القناة التي تريد أن تنشر فيها نتائج الذكاء الاصطناعي
  3. نسخ عنوان الوصلة الشبكية (مثلا https://hooks.slack.com/services/T.../B.../...).

الخطوة 3: الاتصال عن طريق واجهة البرمجة

استخدم نصا بسيطا أو زابير لبناء جسر بين Free.ai و Slack. هنا مثال باستخدام curl:

# 1. Call Free.ai API
RESPONSE=$(curl -s -X POST https://api.free.ai/v1/chat/completions \
  -H "Authorization: Bearer YOUR_FREEAI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"qwen2.5-72b","messages":[{"role":"user","content":"Summarize the latest AI news"}]}')

# 2. Extract the reply
TEXT=$(echo $RESPONSE | python3 -c "import sys,json; print(json.load(sys.stdin)['choices'][0]['message']['content'])")

# 3. Post to Slack
curl -X POST YOUR_SLACK_WEBHOOK_URL \
  -H "Content-Type: application/json" \
  -d "{\"text\": \"$TEXT\"}"

حالات الاستخدام

  • تلخيص طويل Slack الخيوط مع أمر واحد
  • ترجمة الرسائل الموجهة إلى الأفرقة المتعددة اللغات
  • :: إعداد مشاريع المحتويات والحصول على تعليقات داخل القناة
  • النشر الآلي للتقارير اليومية التي ينتجها الذكاء الاصطناعي
  • الإجابة على أسئلة الفريق باستخدام قاعدة معارف الذكاء الاصطناعي

الأسئلة المتكررة

You need a Free.ai API key and a Slack incoming webhook. Get the API key from your developer settings, create a webhook in Slack's app directory, then use a script or Zapier to bridge API calls between Free.ai and Slack.

No custom app installation is required. The integration uses Slack's built-in incoming webhooks feature and standard API calls to Free.ai. This keeps setup simple and does not require Slack admin approval in most workspaces.

يمكنك تلخيص الأخبار الطويلة، وترجمة الرسائل لأفرقة متعددة اللغات، وتوليد مسودة المحتوى، والنشر التلقائي للتقارير اليومية التي يولدها الذكاء الاصطناعي، والإجابة على أسئلة الفريق باستخدام الذكاء الاصطناعي، وتصنيف الرسائل الواردة، وإنشاء صور من الأوصاف النصية.

نعم. عند إجراء استدعاءات API، يمكنك تحديد أي من النماذج المتاحة 346+. استخدام نماذج المستضافة ذاتيا مثل Qwen2.5-72B للاستخدام المجاني أو نماذج عالية مثل GPT-4o للمهام الأكثر تعقيدا.

The integration itself is free to set up. API calls consume tokens from your Free.ai account. Self-hosted models are free within your daily limit, and premium models deduct from your token balance.

Yes. Combine Free.ai with Slack and a scheduler (cron job, Zapier, or similar) to run AI tasks on a recurring schedule. For example, generate a daily AI news summary and post it to a Slack channel every morning.

After calling the Free.ai API, extract the response content and send it to your Slack webhook URL as a JSON payload with a 'text' field. The example script on this page shows the complete flow.

نعم. إنشاء منفصلة الويب الواردة للوصول لكل قناة حيث تريد نتائج الذكاء الاصطناعي نشر. يمكنك تشكيل مختلف تدفقات العمل للقنوات المختلفة، كل استخدام نماذج مختلفة أو نداءات.

نعم. يمكنك تكوين تكاملك لنشر ردود الذكاء الاصطناعي كردود على خيوط بدلاً من الرسائل الجديدة. استخدم بارامترات thread_ts لـ Slack في حمولة webhook الخاصة بك للرد داخل خيوط محددة.

Free.ai does not store your Slack messages. The API processes the text you send, returns a response, and does not retain the input. Your data is never used for training. See our security page for full details.

نعم، يعمل التكامل القائم على الوصلة الشبكية مع جميع خطط سلاك بما في ذلك Enterprise Grid. بالنسبة للمنظمات التي تحتاج إلى تكامل أوثق مع SSO وضوابط الامتثال، يرجى الاتصال بنا بشأن خططنا المؤسسية.

Check that your Free.ai API key is still valid, verify the Slack webhook URL has not been revoked, and ensure your script or automation is running. Test each component independently -- the Free.ai API first, then the Slack webhook.

Love this tool? Share it!

تقييم هذه الصفحة