Documentation Index
Fetch the complete documentation index at: https://docs.aihubmix.com/llms.txt
Use this file to discover all available pages before exploring further.
설치 명령을 실행합니다
npm install -g openclaw@latest
터미널 구성
터미널을 열고 다음 명령을 실행하여 구성을 시작합니다
Yes를 선택합니다
QuickStart를 선택합니다
Skip for now를 선택합니다
All providers를 선택합니다
필요에 따라 기본 모델을 선택합니다. 처음에는 Keep current를 선택해도 됩니다. 다음 단계의 구성 파일에서 수정할 수 있습니다.
필요에 따라 개인 계정을 연결하세요. 필요하지 않으면 Skip for now를 선택하세요.
Yes를 선택하여 스킬을 구성합니다.
npm을 선택합니다
필요에 따라 스킬 선택을 구성합니다.
모든 옵션에 대해 No를 선택합니다.
Skip for now를 선택합니다.
Hatch in UI를 선택합니다.
AIHubMix 구성
방법 1: 플러그인을 통한 빠른 설정 (권장)
AIHubMix auth 플러그인을 설치하고 Gateway를 재시작합니다:
openclaw plugins install @akaknele/aihubmix-auth
openclaw gateway restart
auth 명령을 실행합니다. 프롬프트가 나타나면 AIHubMix API Key를 입력합니다. 플러그인은 사용 가능한 모델을 자동으로 동기화하고 AIHubMix를 기본 공급자로 설정합니다:
openclaw models auth login --provider aihubmix --method api-key --set-default
플러그인은 모델을 다음 그룹으로 구성합니다:
- openai — OpenAI 모델
- anthropic — Anthropic 모델
- google — Google 모델
- other — 기타 모델
구성이 완료되면 Start 섹션으로 이동하여 사용을 시작합니다.
방법 2: 수동 구성
~/.openclaw/openclaw.json 파일을 열고 다음 구성을 추가합니다:
{
"models": {
"mode": "merge",
"providers": {
"aihubmix": {
"baseUrl": "http://aihubmix.com/v1",
"apiKey": "AIHUBMIX_API_KEY",
"api": "openai-completions",
"models": [
{
"id": "claude-sonnet-4-5",
"name": "claude-sonnet-4-5",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 1000000,
"maxTokens": 64000
}
]
}
}
},
"agents": {
"defaults": {
"model": {
"primary": "aihubmix/claude-sonnet-4-5"
},
"workspace": "your_workspace_path",
"compaction": {
"mode": "safeguard"
},
"maxConcurrent": 4,
"subagents": {
"maxConcurrent": 8
}
}
}
}
테스트
채팅 페이지에서 hello를 입력하세요. 답변을 받으면 구성에 성공한 것입니다.
자주 묻는 질문
버전 업그레이드
npm update -g openclaw-aihubmix
Gateway 프로세스 점유
openclaw gateway stop
openclaw gateway
마지막 업데이트: 2026-06-01