{
"event": "PreToolUse",
"tool_name": "Bash",
"tool_input": {
"command": "curl -s -X POST http:\/\/localhost:6333\/collections\/documents\/points\/search \\\n -H \"Content-Type: application\/json\" \\\n -d '{\n \"vector\": [0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1],\n \"limit\": 3,\n \"with_payload\": true\n }' 2>\/dev\/null | python3 -c \"\nimport sys, json\ntry:\n data = json.load(sys.stdin)\n if 'result' in data:\n for i, r in enumerate(data['result'][:3]):\n title = r.get('payload', {}).get('document_title', 'N\/A')\n score = r.get('score', 0)\n print(f'{i+1}. Score: {score:.4f} | {title[:50]}')\n else:\n print('Keine Ergebnisse')\nexcept Exception as e:\n print(f'Error: {e}')\n\"",
"description": "Test Qdrant search with sample vector"
}
}
{
"tool_response": {
"stdout": "Error: Expecting value: line 1 column 1 (char 0)",
"stderr": "",
"interrupted": false,
"isImage": false
}
}