BazaarLinkBazaarLink
로그인
문서API 레퍼런스SDK 레퍼런스에이전트 사용법AI 스킬
임베딩

임베딩 모델 목록

사용 가능한 모델을 반환하며 output_modalities로 필터링할 수 있습니다. 전용 embeddings 엔드포인트가 아니라 공유 모델 목록 엔드포인트(GET /api/v1/models)입니다. output_modalities=embeddings를 전달하면 임베딩 모델만으로 좁혀집니다. 이 파라미터를 생략하면 기본값으로 텍스트 모델만 반환되며 전체가 아닙니다.

GET/api/v1/models

쿼리 파라미터

output_modalities
string

쉼표로 구분된 단일 문자열(동일한 이름의 쿼리 키를 반복하는 것이 아님), 예: embeddings 또는 embeddings,image. all을 전달하면 모든 모달리티를 가져옵니다. 생략 시 기본값은 text만입니다. 인식할 수 없는 값은 400을 반환합니다.

comma-separated, single value
Example: "embeddings"
GET /api/v1/models
curl "https://bazaarlink.ai/api/v1/models?output_modalities=embeddings"
응답 예시

성공. data[]에는 필터와 일치하는 모델만 포함됩니다. 각 항목은 pricing(백만 토큰당 USD), context_length, architecture.output_modalities 등의 필드를 포함합니다.

{
  "object": "list",
  "data": [
    {
      "id": "text-embedding-3-small",
      "object": "model",
      "owned_by": "openai",
      "name": "OpenAI: text-embedding-3-small",
      "context_length": 8191,
      "aliases": [
        "openai/text-embedding-3-small"
      ],
      "pricing": {
        "prompt": "0.00000002",
        "completion": "0"
      },
      "architecture": {
        "modality": "text->embedding",
        "input_modalities": [
          "text"
        ],
        "output_modalities": [
          "embeddings"
        ]
      }
    }
  ]
}
Support
Support
Hi! How can we help you?
Send a message and we'll get back to you soon.
임베딩 모델 목록 — BazaarLink API