Claude Code, Cursor, LangChain — 13개 모델을 하나의 API로.
Anthropic SDK 호환. 락인 없음.
- import Anthropic from "@anthropic-ai/sdk"; - const client = new Anthropic(); + import ORoute from "@oroute/sdk"; + const client = new ORoute({ apiKey: "or-..." }); const msg = await client.messages.create({ model: "auto", // O'Route picks optimal model max_tokens: 1024, messages: [{ role: "user", content: "Explain quantum computing" }] });
0
라우팅된 요청 수
0
개발자 수
0%
평균 비용 절감
왜 O'Route인가?
개발자가 O'Route로 전환하는 3가지 이유
자동 최적화
분류기가 작업 복잡도를 실시간으로 분석하고 최적의 모델로 라우팅합니다. 간단한 질문은 빠르고 저렴한 모델로, 복잡한 추론은 프론티어 모델로 전달됩니다.
비용 절감
단일 프로바이더 대비 평균 57% 비용 절감. 라우터가 품질 기준을 충족하는 가장 비용 효율적인 모델을 자동으로 선택합니다.
락인 없음
Anthropic SDK와 완벽 호환. 코드 두 줄만 변경하면 전환 완료. 떠나고 싶으시면 그 두 줄만 되돌리면 됩니다.
비용 비교
같은 작업, 다른 비용
Claude Code Max
$111/월
Sonnet만 사용 가능
O'Route Pro
$39/월
13개 모델, 자동 최적화
Claude Code Max
$111/월
O'Route Pro
$39/월
65% 절감
O'Route는 간단한 작업에는 저렴한 모델을, 복잡한 작업에는 더 뛰어난 모델(Opus)을 사용합니다.
더 저렴하면서 더 좋습니다.
통합 가이드
기존 스택에 O'Route를 몇 분 만에 연동하세요
Claude Code
MCP Server
3분 설정
Cursor
MCP Config
3분 설정
LangChain
Python / TS
5분 설정
Next.js
App Router
5분 설정
FastAPI
Python
5분 설정
React Native
Expo
10분 설정
멀티 에이전트 세션 & 루프 모드
자동 컨텍스트 관리와 반복 작업 비용 추적 기능으로 상태 유지 AI 에이전트를 구축하세요.
에이전트 세션
대화 컨텍스트를 유지하는 영속적인 세션을 생성하세요. 각 세션은 모든 메시지에 걸쳐 토큰, 비용, 사용 모델을 추적합니다.
import ORoute from "@oroute/sdk"; const client = new ORoute({ apiKey: "or-..." }); "color:#64748b">// 1. Create a multi-turn session const session = await client.agent.sessions.create({ agentProfileId: "medical-qa", mode: "quality_first", }); "color:#64748b">// 2. Send messages with full context const res1 = await session.message("Analyze this patient's symptoms..."); console.log(res1.session.totalCost); "color:#64748b">// $0.003 const res2 = await session.message("What about drug interactions?"); console.log(res2.session.messageCount); "color:#64748b">// 2 "color:#64748b">// 3. End session, get summary const summary = await session.end(); "color:#64748b">// { messageCount: 2, totalTokens: 4821, totalCost: 0.007 }
루프 모드
배치 작업의 누적 비용을 추적하세요. X-ORoute-Loop-Cost 헤더로 요청별 비용을 확인하여 예산을 관리할 수 있습니다.
"color:#64748b">// Loop Mode: track cumulative cost across iterations const tasks = ["Summarize report", "Draft email", "Review code"]; for (const task of tasks) { const res = await client.messages.create({ model: "auto", max_tokens: 2048, messages: [{ role: "user", content: task }], x_oroute: { loop_mode: true, "color:#64748b">// Enables X-ORoute-Loop-Cost header mode: "cost_first", "color:#64748b">// Optimize for batch processing }, }); const loopCost = res.headers["x-oroute-loop-cost"]; console.log(`${task}: $${loopCost}`); "color:#64748b">// Summarize report: $0.0012 "color:#64748b">// Draft email: $0.0008 "color:#64748b">// Review code: $0.0031 }
AI Model Intelligence API
O'Route 없이도 "지금 어떤 모델이 좋은지" 쿼리할 수 있습니다. 데이터 자체가 제품입니다.
Endpoint
Response Example
{ "providers": [ { "providerId": "anthropic/claude-sonnet-4-6", "displayName": "Claude Sonnet 4.6", "fulfillmentRate": 0.94, "ttftP50": 820, "errorRate": 0.012, "trend": "stable", "confidence": 0.87, "sampleCount": 15420 } ], "updatedAt": "2026-03-25T10:00:00Z" }
Use this to build your own routing logic, monitor provider health, or display real-time AI model performance in your dashboard. No authentication required. Rate limited to 30 req/min.
Routing Block 마켓플레이스
커뮤니티가 만든 도메인 특화 라우팅 최적화 블록
무료
의료 문서
임상 노트 및 환자 요약에 최적화된 라우팅
4.8
1,240
무료
코드 리뷰
코드 분석을 최적의 추론 모델로 라우팅
4.9
3,100
$2/월
번역
방언 인식 기반 다국어 라우팅
4.7
890
무료
데이터 분석
차트, SQL, pandas — 가장 빠른 모델 자동 선택
4.6
2,050
$1/월
창작 글쓰기
소설, 시, 스크립트 — 스타일 유지 라우팅
4.5
760
$5/월
고객 지원
티켓 분류 + 응답 생성 자동화
4.8
1,800
빠른 시작
2분 안에 시작하세요
npm install @oroute/sdk "color:#64748b"># Set your API key export OROUTE_API_KEY="or-..." "color:#64748b"># Quick test npx oroute-test "Hello from O'Route!"
라우팅 시뮬레이터
프롬프트를 입력하면 O'Route가 어떤 모델을 선택하는지 확인하세요
* This is a client-side simulation. Actual routing uses real-time collective intelligence data.