본문 바로가기
[KT AIBLE SCHOOL]에이블스쿨

[KT 에이블스쿨] 04.23 맞춤형 챗봇 만들기, Zapier 자피어

by 오동일지 2025. 4. 23.

Zapier

- 여러 반복적인 업무를 하나의 업무 자동화 파이프라인으로 만들어주는 플랫폼

  • 이메일 관리, 일정 관리, 문서 작성 등 일상 업무 자동화
  • 자연어만으로도 효율적인 업무 자동화 시스템 구축
  • Chat GPT 등장 이전부터 있던 자동화 툴
  • 6000개가 넘는 앱을 서로 연동하여 자동화 파이프라인 구성 가능

https://zapier.com/

 

Automate without limits | Zapier

Workflow automation software for everyone. Automate your work across 7,000+ app integrations—no developers, no IT tickets, no delays.

zapier.com

 

GPTs 만들기 프로세스 공통 단계

  • GPTs Name, Description 설정하기
  • GPTs Actions에서 Zapier OpenAPI 연동하기
  • Zapier AI Actions에서 사용하고자 하는 외부 앱과 앱의 특정 태스크 설정하기
  • GPTs 프롬프트 작성하기
  • GPTs 테스트 후 배포하기

 

GPTs Actions와 Zapier OpenAPI 연동

1. GPTs 설정 메뉴 접근

  • Explore GPTs > + Create > Configure > Actions > "Create new action" 클릭

2. Schema 불러오기

   https://actions.zapier.com/gpt/api/v1/dynamic/openapi.json?tools=meta

3. Schema 자동 업로드 및 확인

  • 위 URL을 입력하면 Schema가 자동으로 업로드되며, “Available actions” 항목이 표시됩니다.

4. 주요 개념 정리

  • Schema: GPTs가 Zapier AI Actions에 접근하기 위한 OpenAPI 규약입니다. “Available_actions”에는 GPTs가 호출할 수 있는 엔드포인트 목록이 포함되어 있습니다.
  • list_available_actions: 현재 사용 가능한 모든 작업(action)을 가져옵니다.
  • run_action: 특정 ID를 가진 작업을 실행합니다.

 

<지침 설정 예시>

더보기

# Instructions for Zapier AI Actions: Step 1. Check for required action(s): - Call `list_available_actions` to generate available actions list - If required action exists → Step 4 - If not → Step 2 Step 2. For missing required action(s): - Send configuration link - Wait for user to confirm they've configured the required action Step 3. After user confirms configuration → proceed to Step 4 with original request Step 4 with original request Step 4. Execute `run_action`: - Use the action ID from the results array of the `list_available_actions` response - Fill in required parameters based on user request Required Actions: - Action: “Gmail Send Email” Configuration Link: "(본인의 send email 링크)”

https://actions.zapier.com/gpt/actions/

여기에서 원하는 기능 만들기

 

<3가지 필드 옵션 선택지>