Free.ai Slack Integration
Add AI tools directly to your Slack workspace.
כיצד זה עובד
חבר Free.ai למרחב העבודה שלך בעזרת וו אינטרנט נכנס. ברגע שאתה מחובר, אתה יכול להפעיל משימות בינה מלאכותית מ"סלאק" ולקבל תוצאות ישירות בערוצים שלך.
שלב 1: קבל מפתח ה-Free.ai API שלך
- הרשמה אל your Free.ai account (או צור אחד חופשי.).
- עבור אל הגדרות מפתח וליצור מפתח API.
- העתק את המפתח & mdash; תצטרך אותו עבור הגדרות הוק האינטרנט.
צעד 2: צור וו ־ אינטרנט בלתי נלאה
- In Slack, go to יישומים → search for קרסים נכנסים → הוסף לסלאק.
- בחר ערוץ שבו אתה רוצה תוצאות בינה מלאכותית פורסמו.
- העתק את כתובת הוו (לדוגמה:
https://hooks.slack.com/services/T.../B.../...).
שלב 3: התחבר באמצעות API
השתמש בתסריט פשוט או בתסריט של זפייר כדי לגשר על Free.ai וסלאק. הנה דוגמה בשימוש ב־ )code*curl*/ code):
# 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\"}"
השתמש בתיקים
- Summarize long slack strings with one command
- תרגם הודעות לצוותים רב לשוניים
- צור טיוטות תוכן ולקבל משוב בערוץ
- דו"חות אוטומטיים של בינה שנוצרו כל יום
- תשובות לשאלות צוות באמצעות בסיס ידע בינה
FAQ
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+ זמין. השתמש במודלים עצמיים כמו Qwen {1-72B עבור שימוש חינם או מודלים פרמיה כמו GPT-4 עבור משימות מורכבות יותר.
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.
כן. צור קרסי אינטרנט נפרדים עבור כל ערוץ שבו ברצונך שתוצאות בינה יפורסמו. באפשרותך להגדיר זרמי עבודה שונים עבור ערוצים שונים, כל אחד מהם משתמש במודלים שונים או במהדורות שונות.
כן. באפשרותך להגדיר את האינטגרציה שלך כדי לפרסם תגובות בינה כתשובות חוט במקום הודעות חדשות. השתמש בפרמטר החוט_ ts של Slack במטען הוו שלך כדי לענות בתוך חוט מסוים.
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.
כן, האינטגרציה מבוססת-הרשת עובדת עם כל התוכניות של "סלאק" כולל "רשת אנטרפרייז," עבור ארגונים הזקוקים לאינטגרציה הדוקה יותר
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.