HERMES + RECRAFT

Hermes Agent에서 Recraft를 사용하세요.

Recraft는 아티팩트 없이 세밀한 디테일을 복원하는 선명한 신경망 이미지 업스케일링과 머리카락 가닥과 투명한 엣지를 보존하는 정밀한 배경 제거를 제공합니다. Hermes Agent는 채팅에 사용하는 동일한 RunAPI 커스텀 프로바이더를 통해 두 엔드포인트를 모두 호출합니다 — 소스 이미지 URL을 보내고, 업스케일 또는 배경 제거를 선택한 후 처리된 결과를 폴링하세요.

하나의 API key · 업스케일 + 배경 제거 · 비동기 작업 폴링
Use RunAPI to upscale an image with Recraft crisp upscale.

Requirements:
- Use the RUNAPI_API_KEY environment variable for authentication.
- Use the custom:runapi provider with base_url https://runapi.ai/v1.
- Call the RunAPI upscale_image endpoint at https://runapi.ai/api/v1/recraft/upscale_image.
- Set model to "recraft-crisp-upscale".
- Pass the source image URL in source_image_url.
- The response returns a task_id. Poll the task status endpoint until the task completes, then retrieve the upscaled image URL from the result.
- For background removal, call /api/v1/recraft/remove_background with model "recraft-remove-background" instead.
curl -X POST https://runapi.ai/api/v1/recraft/upscale_image \
  -H "Authorization: Bearer $RUNAPI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "recraft-crisp-upscale",
    "source_image_url": "https://example.com/product-photo.jpg"
  }'
{
  "task_id": "tsk_abc123",
  "status": "pending",
  "model": "recraft-crisp-upscale"
}
curl 명령어를 복사하여 테스트하세요 recraft
작동 방식

3단계로 Hermes Agent에서 Recraft 사용하기

1

RunAPI 설정

아직 Hermes Agent에 RunAPI를 설정하지 않았다면 Hermes Agent 설정 가이드를 따르세요. base_url https://runapi.ai/v1, key_env RUNAPI_API_KEY, api_mode chat_completions로 runapi라는 커스텀 프로바이더를 추가하세요.

export RUNAPI_API_KEY=runapi_xxx
2

Recraft 업스케일 또는 배경 제거 호출

model을 recraft-crisp-upscale로 설정하고 source_image_url을 제공하여 upscale_image 엔드포인트에 POST 요청을 보내세요. 배경 제거의 경우 대신 model recraft-remove-background로 remove_background 엔드포인트에 POST하세요. 두 엔드포인트 모두 source_image_url만 필요합니다.

POST /api/v1/recraft/upscale_image
3

결과 폴링

두 엔드포인트 모두 status가 pending인 task_id를 반환합니다. status가 completed로 변경될 때까지 task status 엔드포인트를 폴링한 후 응답에서 처리된 이미지 URL을 가져오세요. RunAPI SDK와 CLI는 폴링을 자동으로 처리합니다.

GET /api/v1/recraft/upscale_image/tsk_abc123
파라미터

Recraft API 파라미터

파라미터 유형 설명
model string 필수. 업스케일링에는 recraft-crisp-upscale, 배경 제거에는 recraft-remove-background.
source_image_url string 필수. 처리할 소스 이미지의 URL.
callback_url string 선택 사항. 비동기 완료 알림을 위한 웹훅 URL.

Hermes Agent의 Recraft란?

RunAPI의 Recraft는 선명한 신경 업스케일링과 정밀한 배경 제거를 제공합니다——원시 AI 생성 이미지를 프로덕션 준비 에셋으로 변환하는 두 가지 후처리 단계입니다. Hermes Agent는 생성 모델과 동일한 custom:runapi provider를 통해 두 엔드포인트를 모두 호출하며, 단일 워크플로에서 생성과 후처리를 연결하기 쉽습니다.

Recraft 활용 사례

생성에서 프로덕션 준비 에셋까지의 파이프라인

Flux 2 또는 Imagen 4로 이미지를 생성한 후 Recraft로 고해상도 업스케일링과 배경 제거를 Hermes Agent의 단일 워크플로에서 데스크탑 도구 없이 완료합니다.

이커머스 카탈로그 일괄 처리

전체 제품 카탈로그에 자동으로 배경 제거와 신경 업스케일링을 적용하며, Hermes Agent가 각 작업을 병렬 디스패치하고 모든 결과를 수집합니다.

디자인 납품물을 위한 로고 업스케일링

저해상도 로고를 대형 인쇄·전시 배너·동영상 오버레이용으로 업스케일하며, Recraft의 신경 업스케일링으로 가장자리 선명도를 유지합니다.

FAQ

Recraft + Hermes Agent 질문

Hermes Agent 일반 설정

아직 설정하지 않으셨나요? Hermes Agent용 RunAPI 설정 가이드로 시작하세요.

Hermes Agent 설정 가이드 →

Recraft 모델 카탈로그

Recraft의 모든 변형, 가격, API 문서를 확인하세요.

Recraft 모델 →

지금 Hermes Agent에서 Recraft를 사용해보세요.

무료 RunAPI key를 발급받고, 커스텀 프로바이더를 설정한 후 Recraft로 이미지 업스케일링과 배경 제거를 시작하세요.