Free.ai Slack Integration
Add AI tools directly to your Slack workspace.
어떻게 작동하는지
Free.ai을 Slack 워크스페이스에 연결하세요. 연결되면 Slack에서 AI 작업을 트리거하고 채널에서 직접 결과를 받을 수 있습니다.
1단계: Free.ai API 키 얻기
- 로그인하기 your Free.ai account (또는 하나를 무료로 만들기).
- 다음으로 이동 개발자 설정 API 키를 생성합니다.
- 웹훅 설정에 필요한 키를 복사합니다.
2단계: Slack Incoming Webhook 만들기
- In Slack, go to 응용 프로그램 → search for 들어오는 웹훅 → Slack에 추가하기.
- AI 결과를 게시할 채널을 선택합니다.
- 웹훅 URL을 복사합니다(예:
https://hooks.slack.com/services/T.../B.../...).
3단계: API를 통해 연결
간단한 스크립트나 Zapier를 사용하여 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 스레드 요약
- 다국어 팀을 위한 메시지 번역
- 콘텐츠 초안 생성 및 채널 내 피드백 수집
- 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 결과를 게시할 각 채널에 대해 별도의 수신 웹훅을 생성합니다. 다른 채널에 대해 다른 워크플로우를 구성할 수 있으며, 각 채널은 다른 모델 또는 프롬프트를 사용합니다.
예. 새로운 메시지가 아닌 스레드 답변으로 AI 응답을 게시하도록 통합을 구성할 수 있습니다. 웹훅 페이로드에 있는 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.
네, 웹훅 기반 통합은 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.