Hugging Face · Schema

FeatureExtractionRequest

Properties

Name Type Description
inputs object The text input(s) for embedding extraction
View JSON Schema on GitHub

JSON Schema

hugging-face-featureextractionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FeatureExtractionRequest",
  "title": "FeatureExtractionRequest",
  "type": "object",
  "required": [
    "inputs"
  ],
  "properties": {
    "inputs": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      ],
      "description": "The text input(s) for embedding extraction",
      "example": "example_value"
    }
  }
}