For the complete documentation index, see llms.txt. This page is also available as Markdown.

[활용하기] OpenClaw

API 라우터에서 발급받은 API Key를 OpenClaw에서 활용하는 방법을 안내 드립니다.

사전 작업

연동 하기

  1. ~/.openclaw/openclaw.json 에 아래 예시와 같이 providers"runyourai": {}를 추가합니다.

    1. {
        models: {
          mode: "merge",
          providers: {
            "runyourai": {
              baseUrl: "https://api.runyour.ai/v1",
              apiKey: <API 라우터에서 발급 받은 API Key>,
              api: "openai-completions",
              models: [
                {
                  "id": <모델 ID>,
                  "input": [
                    "text"
                  ],
                  "name": <모델 이름>,
                  "reasoning": false
                },
                // 예시
                {
                  "id": "anthropic/claude-opus-4-7",
                  "input": [
                    "text"
                  ],
                  "name": "Claude Opus 4.7",
                  "reasoning": false
                }
              ],
            },
          },
        },
      }
  2. ollama launch openclaw 명령어로 OpenClaw를 재시작 후 사용합니다.

마지막 업데이트