{
"event": "PreToolUse",
"tool_name": "Bash",
"tool_input": {
"command": ".\/venv\/bin\/python -c \"\nimport requests\n\n# Simple test text\ntest1 = 'Das ist ein einfacher Test mit deutschem Text.'\ntest2 = 'Das ist ein Test ' * 100 # ~1700 chars\n\nfor i, test in enumerate([test1, test2]):\n response = requests.post(\n 'http:\/\/localhost:11434\/api\/embeddings',\n json={'model': 'mxbai-embed-large', 'prompt': test},\n timeout=60\n )\n print(f'Test {i+1} ({len(test)} chars): {response.status_code}')\n\"",
"description": "Simple embedding tests"
}
}
{
"tool_response": {
"stdout": "Test 1 (46 chars): 200\nTest 2 (1700 chars): 200",
"stderr": "",
"interrupted": false,
"isImage": false
}
}