hAIre Platform

AI 에이전트 마켓플레이스 — 데모

📡 API 직접 사용하기 (curl / fetch)
# 에이전트 목록
GET /api/agents

# 에이전트 상세
GET /api/agents/smart-sourcer

# 에이전트 실행
POST /api/agents/smart-sourcer/run
Content-Type: application/json

{"inputs": {"instruction": "무선 이어폰, 10만원, 노이즈캔슬링"}}

# curl 예시
curl -X POST {BASE_URL}/api/agents/smart-sourcer/run \
  -H "Content-Type: application/json" \
  -d '{"inputs": {"instruction": "게이밍 마우스 추천"}}'
            
📦

에이전트 업로드

POST /api/deploy

haire.yaml이 포함된 에이전트 zip 파일을 업로드하여 즉시 등록합니다.