Free.ai Slack Integration
Add AI tools directly to your Slack workspace.
どうやって働くのか
入力 webhook を使って Free.ai を Slack ワークスペースに接続します。接続したら、Slack から AI タスクをトリガーし、チャンネルに直接結果を受け取ることができます。
ステップ 1: Free.ai API キーを取得
- ログイン your Free.ai account (それとも 無料で作って).
- 次へ 開発者の設定 APIキーを生成します
- ウェブフックの設定に必要なキーをコピーします。
ステップ 2: Slack 入力 Webhook を作成
- In Slack, go to アプリケーション → search for 入力 Webフック → Slack に追加.
- 人工知能の結果を投稿するチャンネルを選択します。
- ウェブフック URL をコピーします。
https://hooks.slack.com/services/T.../B.../...).
ステップ 3: API を通して接続
Free.aiとSlackをブリッジするには、簡単なスクリプトまたは Zapier を使用してください。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\"}"
ユースケース
- 1 つのコマンドで長い Slack スレッドをまとめます
- 多言語チームのためのメッセージを翻訳します
- コンテンツの草稿を生成し、チャンネル内でフィードバックを取得します
- 日々のAI生成レポートを自動的に投稿
- AI 知識ベースを使ってチームの質問に答えます
よくある質問
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.
これにより,長いスレッドをまとめ,多言語チームのメッセージを翻訳,コンテンツの草稿を生成,日々のAI生成レポートを自動的に投稿,AIを用いたチームの質問に答え,受信メッセージを分類し,テキスト記述から画像を作成できる。
はい。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.
はい。AI 結果を投稿するチャネルごとに別々の入力 webhook を作成します。異なるチャネルに対して異なるワークフローを設定できます。それぞれ異なるモデルやプロンプトを使用します。
はい。AI 応答を新しいメッセージではなくスレッドの返信として投稿するように統合を設定できます。特定のスレッド内で応答するには、webhook ペイロードに Slack の thread_ts パラメータを使用してください。
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.
はい、webhookベースの統合は Enterprise Grid を含むすべての Slack プランと機能します。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.