qdrant常见命令
1、查看有哪些结合
curl -X GET http://localhost:6333/collections
2、搜索指定key/value的向量库值
curl -X POST "http://localhost:6333/collections/df_resource/points/scroll" \
  -H 'Content-Type: application/json' \
  -d '{
      "limit": 10,
          "filter": {
                "must": [
                  {
                        "key": "source_id",
                        "match": {
                          "value": 1746082732275171329
                        }
                  }
                ]
          }
  }'
3、
curl -X POST "http://localhost:6333/collections/df_resource/points/scroll" \
  -H 'Content-Type: application/json' \
  -d '{
      "limit": 10,
          "filter": {
                "must": [
                  {
                        "key": "source_type",
                        "match": {
                          "value": "answer"
                        }
                  }
                ]
          }
  }'
                    
                
                
            
        
浙公网安备 33010602011771号