메인 콘텐츠로 건너뛰기

Documentation Index

Fetch the complete documentation index at: https://docs.openclaw.ai/llms.txt

Use this file to discover all available pages before exploring further.

DeepInfra

DeepInfra는 단일 엔드포인트와 API 키 뒤에서 가장 인기 있는 오픈 소스 및 frontier 모델로 요청을 라우팅하는 통합 API를 제공합니다. OpenAI와 호환되므로 대부분의 OpenAI SDK는 기본 URL만 바꾸면 작동합니다.

API 키 받기

  1. https://deepinfra.com/으로 이동합니다
  2. 로그인하거나 계정을 만듭니다
  3. Dashboard / Keys로 이동하여 새 API 키를 생성하거나 자동 생성된 키를 사용합니다

CLI 설정

openclaw onboard --deepinfra-api-key <key>
또는 환경 변수를 설정합니다:
export DEEPINFRA_API_KEY="<your-deepinfra-api-key>" # pragma: allowlist secret

설정 스니펫

{
  env: { DEEPINFRA_API_KEY: "<your-deepinfra-api-key>" }, // pragma: allowlist secret
  agents: {
    defaults: {
      model: { primary: "deepinfra/deepseek-ai/DeepSeek-V3.2" },
    },
  },
}

지원되는 OpenClaw 표면

번들 Plugin은 현재 OpenClaw 제공자 계약과 일치하는 모든 DeepInfra 표면을 등록합니다:
표면기본 모델OpenClaw 설정/도구
채팅 / 모델 제공자deepseek-ai/DeepSeek-V3.2agents.defaults.model
이미지 생성/편집black-forest-labs/FLUX-1-schnellimage_generate, agents.defaults.imageGenerationModel
미디어 이해이미지용 moonshotai/Kimi-K2.5인바운드 이미지 이해
음성-텍스트 변환openai/whisper-large-v3-turbo인바운드 오디오 전사
텍스트-음성 변환hexgrad/Kokoro-82Mmessages.tts.provider: "deepinfra"
비디오 생성Pixverse/Pixverse-T2Vvideo_generate, agents.defaults.videoGenerationModel
메모리 임베딩BAAI/bge-m3agents.defaults.memorySearch.provider: "deepinfra"
DeepInfra는 재순위화, 분류, 객체 감지 및 기타 네이티브 모델 유형도 노출합니다. OpenClaw에는 현재 이러한 범주에 대한 일급 제공자 계약이 없으므로, 이 Plugin은 아직 이를 등록하지 않습니다.

사용 가능한 모델

OpenClaw는 시작 시 사용 가능한 DeepInfra 모델을 동적으로 검색합니다. 사용 가능한 전체 모델 목록을 보려면 /models deepinfra를 사용하세요. DeepInfra.com에서 사용 가능한 모든 모델은 deepinfra/ 접두사와 함께 사용할 수 있습니다:
deepinfra/MiniMaxAI/MiniMax-M2.5
deepinfra/deepseek-ai/DeepSeek-V3.2
deepinfra/moonshotai/Kimi-K2.5
deepinfra/zai-org/GLM-5.1
...그리고 더 많은 모델

참고

  • 모델 참조는 deepinfra/<provider>/<model>입니다(예: deepinfra/Qwen/Qwen3-Max).
  • 기본 모델: deepinfra/deepseek-ai/DeepSeek-V3.2
  • 기본 URL: https://api.deepinfra.com/v1/openai
  • 네이티브 비디오 생성은 https://api.deepinfra.com/v1/inference/<model>을 사용합니다.