{
  "openapi": "3.1.0",
  "info": {
    "title": "Qwen/Qwen3-Embedding-8B-TEE — Chutes API",
    "description": "Qwen/Qwen3-Embedding-8B",
    "version": "c197b15a-e0a0-5ab7-9085-51db8444879b",
    "contact": {
      "name": "Chutes",
      "url": "https://chutes.ai"
    },
    "x-chutes": {
      "chuteId": "21822836-bfa6-5426-b27e-dd5fdda1249e",
      "slug": "chutes-qwen-qwen3-embedding-8b-tee",
      "modelName": "Qwen/Qwen3-Embedding-8B-TEE",
      "standardTemplate": "embedding",
      "openaiCompatible": false,
      "confidentialCompute": true,
      "modelPage": "https://chutes.ai/app/chute/chutes-qwen-qwen3-embedding-8b-tee",
      "llmsTxt": "https://chutes.ai/app/chute/chutes-qwen-qwen3-embedding-8b-tee/llms.txt",
      "pricing": {
        "usdPerHour": 1.8
      }
    }
  },
  "servers": [
    {
      "url": "https://chutes-qwen-qwen3-embedding-8b-tee.chutes.ai"
    }
  ],
  "security": [
    {
      "bearerAuth": []
    }
  ],
  "components": {
    "securitySchemes": {
      "bearerAuth": {
        "type": "http",
        "scheme": "bearer",
        "description": "Chutes API key. Send as `Authorization: Bearer $CHUTES_API_KEY`."
      }
    }
  },
  "paths": {
    "/v1/embeddings": {
      "post": {
        "operationId": "embed",
        "summary": "POST /v1/embeddings",
        "responses": {
          "200": {
            "description": "Successful response.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "input": {
                    "type": "string"
                  },
                  "model": {
                    "type": "string",
                    "default": null
                  }
                },
                "required": [
                  "input",
                  "model"
                ]
              },
              "example": {
                "input": "Your text here",
                "model": "Qwen/Qwen3-Embedding-8B-TEE",
                "encoding_format": "float"
              }
            }
          }
        }
      }
    },
    "/v1/models": {
      "get": {
        "operationId": "get_models",
        "summary": "GET /v1/models",
        "responses": {
          "200": {
            "description": "Successful response.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        }
      }
    }
  }
}