Free.ai Slack Integration
Add AI tools directly to your Slack workspace.
Kako to funkcionira
Povežite Free.ai na vašu Slack radnu površinu koristeći dolazni webhook. Nakon što se spojite, možete aktivirati UI zadatke od Slack i dobiti rezultate izravno u vašim kanalima.
Korak 1: Uzmite svoj Free.ai API ključ
- Upišite se na your Free.ai account (ili stvori jednog slobodnog).
- Idi na Postavke programera i generirati API ključ.
- Kopiraj ključ – trebat ćete ga za webhook konfiguraciju.
Korak 2: Napravite Slack Dolazni Webhook
- In Slack, go to Aplikacije → search for Dolazni webhooks → Dodaj u Slack.
- Odaberite kanal gdje želite UI rezultati objavljeni.
- Kopiraj webhook URL (npr.,
https://hooks.slack.com/services/T.../B.../...).
Korak 3: Poveži se preko API
Koristi jednostavnu skriptu ili Zapier za most Free.ai i Slack. Evo primjera korištenja 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\"}"
Slučaji korištenja
- Sažetak dugih Slack niti sa jednom naredbom
- Prevedite poruke za višejezične timove
- Generiraj nacrte sadržaja i dobiti povratnu vezu u kanalu
- Izvješća UI-a za AUTO-post
- Pitanja tima odgovora koristeći UI bazu znanja
Pitanja
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.
Možete sažeti duge niti, prevesti poruke za višejezične momčadi, generirati nacrte sadržaja, automatski-post dnevnog izvješća UI generirana, odgovoriti na pitanja tima koristeći UI, klasificirati dolazne poruke, i stvoriti slike iz opisa teksta.
Da. Pri izvođenju API poziva, možete navesti bilo koji od 346+ dostupnih modela. Koristite samostalne modele kao što su Qwen2.5-72B za besplatnu upotrebu ili premium modele kao što su GPT-4o za složenije zadatke.
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.
Da. Kreirajte odvojene dolazne webhooks za svaki kanal gdje želite UI rezultati objavljeni. Možete konfigurirati različite radne tokove za različite kanale, svaki koristeći različite modele ili upite.
Da. Vašu integraciju možete podesiti za objavljivanje odgovora UI kao odgovora na nit umjesto novih poruka. Koristite Slackov parametar thread_ts u webhook paytoad za odgovor unutar određene niti.
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.
Da. Web-hook-based integracija radi sa svim planovima Slack, uključujući Enterprise Grid. Za organizacije koje trebaju strožu integraciju sa SSO i kontrole usklađenosti, kontaktirajte nas o našim poslovnim planovima.
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.