Qdrant · Schema

RelevanceFeedbackInput

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
target object
feedback array
strategy object
View JSON Schema on GitHub

JSON Schema

qdrant-relevancefeedbackinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RelevanceFeedbackInput",
  "title": "RelevanceFeedbackInput",
  "type": "object",
  "required": [
    "feedback",
    "strategy",
    "target"
  ],
  "properties": {
    "target": {
      "$ref": "#/components/schemas/VectorInput"
    },
    "feedback": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/FeedbackItem"
      }
    },
    "strategy": {
      "$ref": "#/components/schemas/FeedbackStrategy"
    }
  }
}