어디서든
에이전트는 GPU 머신에 묶이지 않고 어디서든 실행
로컬 런타임은 추론을 한 대의 머신에 묶어 둡니다. OpenAlchemy API는 에이전트를 폰, Lambda, cron, 브라우저 어디에서든 살아 움직이게 합니다 — HTTPS로 어디서든 호출. GPU는 Grid에 남깁니다.

모든 모달리티를 분산 GPU 팜에서 서비스.

모든 모달리티를 분산 GPU 팜에서 서비스.
데스크톱 클라이언트
OpenAlchemy Engine Desktop 을 설치하면 당신의 유휴 GPU가 Grid 에 합류합니다 — API를 무료로 사용하거나, 누군가의 작업이 당신의 머신에서 돌 때마다 70% 레비뉴 셰어로 크레딧을 획득. 선택은 자유. 대시보드에서 GPU 상태, 로드된 모델, 큐, 로그를 실시간으로 확인.
OpenAlchemy Engine ・ v0.3.0
PLAYGROUND
대화, 요약, 코드 생성, 도구 호출에 대응하는 표준 호환 컴플리션 엔드포인트.
# 1) discover an online chat model — Grid's set changes constantly,
# don't hardcode an id in your code.
MODEL=$(curl -s https://api.openalchemy.io/v1/models \
-H "Authorization: Bearer $OPENALCHEMY_API_KEY" \
| jq -r '.data[] | select(.online and .endpoint_type=="chat") | .id' \
| head -1)
# 2) chat
curl https://api.openalchemy.io/v1/chat/completions \
-H "Authorization: Bearer $OPENALCHEMY_API_KEY" \
-H "X-Project-Id: $YOUR_PROJECT_ID" \
-H "Content-Type: application/json" \
-d "{
\"model\": \"$MODEL\",
\"messages\": [
{\"role\": \"user\", \"content\": \"Hello, OpenAlchemy.\"}
]
}"채팅 체험
프롬프트를 입력해 미리보기를 체험하세요.
검색 결과를 관련도로 재정렬하여 top-K 정밀도를 끌어올림.
curl https://api.openalchemy.io/v1/rerank \
-H "Authorization: Bearer $OPENALCHEMY_API_KEY" \
-H "X-Project-Id: $YOUR_PROJECT_ID" \
-H "Content-Type: application/json" \
-d '{
"model": "reranker-large-v1",
"query": "Where is the best ramen in Tokyo?",
"documents": [
"Ichiran has 24-hour shops in Shibuya.",
"Tsuta in Sugamo holds a Michelin star.",
"The Tsukiji market is famous for sushi.",
"Afuri serves yuzu shio ramen in Ebisu."
],
"top_n": 4
}'재순위 체험
음성을 텍스트로 변환 — 회의록, 자막, 통화 분석, 음성 입력에.
curl https://api.openalchemy.io/v1/audio/transcriptions \
-H "Authorization: Bearer $OPENALCHEMY_API_KEY" \
-H "X-Project-Id: $YOUR_PROJECT_ID" \
-F "model=stt-large-v3" \
-F "file=@meeting.m4a" \
-F "response_format=json"음성 인식 체험
녹음을 누르고 말씀하세요.
텍스트를 자연스러운 음성으로 — 내레이션, 읽기, 보이스 에이전트에.
curl https://api.openalchemy.io/v1/audio/speech \
-H "Authorization: Bearer $OPENALCHEMY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "tts-1.0",
"voice": "alice",
"input": "OpenAlchemy turns idle GPUs into an open AI inference grid. Run a node on a 4090 or 5090 and earn credits, or call our APIs and pay per token. Open weights, distributed compute."
}' \
--output openalchemy_pitch.wav음성 합성 체험
보이스: Maya
텍스트나 이미지에서 새 이미지를 만들고, 기존 이미지를 편집・스타일 변환.
curl https://api.openalchemy.io/v1/images/generations \
-H "Authorization: Bearer $OPENALCHEMY_API_KEY" \
-H "X-Project-Id: $YOUR_PROJECT_ID" \
-H "Content-Type: application/json" \
-d '{
"model": "image-gen-1",
"prompt": "A neon-lit Tokyo alley at dusk, photorealistic.",
"size": "1024x1024",
"n": 1
}'준비 중
텍스트나 이미지에서 동영상 클립을 생성 — 짧은 SNS 컷부터 장편 출력까지.
curl https://api.openalchemy.io/v1/videos/generations \
-H "Authorization: Bearer $OPENALCHEMY_API_KEY" \
-H "X-Project-Id: $YOUR_PROJECT_ID" \
-H "Content-Type: application/json" \
-d '{
"model": "video-gen-1",
"prompt": "A drone shot flying over Mt. Fuji at sunrise.",
"duration_seconds": 6,
"resolution": "1080p"
}'준비 중
이미지를 입력으로 받는 멀티모달 대화 LLM, 그리고 문서 OCR・표 추출.
curl https://api.openalchemy.io/v1/chat/completions \
-H "Authorization: Bearer $OPENALCHEMY_API_KEY" \
-H "X-Project-Id: $YOUR_PROJECT_ID" \
-H "Content-Type: application/json" \
-d '{
"model": "vlm-7b",
"messages": [
{"role": "user", "content": [
{"type": "text", "text": "What is in this image?"},
{"type": "image_url", "image_url": {"url": "https://example.com/receipt.jpg"}}
]}
]
}'채팅 체험

프롬프트를 입력해 미리보기를 체험하세요.
WHY OPENALCHEMY
어디서든
로컬 런타임은 추론을 한 대의 머신에 묶어 둡니다. OpenAlchemy API는 에이전트를 폰, Lambda, cron, 브라우저 어디에서든 살아 움직이게 합니다 — HTTPS로 어디서든 호출. GPU는 Grid에 남깁니다.
비용
전용 클라우드 GPU를 묶어 두는 대신, 글로벌 풀의 집계된 유휴 용량 시간만 결제. 같은 처리량, 더 낮은 단가.
호환성
익숙한 /v1/chat/completions, /v1/embeddings 엔드포인트 — 기존 SDK가 그대로 동작. base URL과 API 키만 바꾸면 끝.
FOUNDATION
오늘 시작
무료 플랜으로 프로젝트를 하나 띄우고 첫 1,000건의 요청을 신용카드 없이 실행.
OpenAlchemy의 새 릴리스, 기능, 업데이트 소식을 메일로 받아보세요.