{
"event": "PreToolUse",
"tool_name": "Read",
"tool_input": {
"file_path": "\/opt\/scripts\/pipeline\/config.py",
"limit": 55
}
}
{
"tool_response": {
"type": "text",
"file": {
"filePath": "\/opt\/scripts\/pipeline\/config.py",
"content": "\"\"\"\nKI-System Pipeline Configuration\n\"\"\"\n\nimport os\n\n# Nextcloud Settings\nNEXTCLOUD_PATH = \"\/var\/www\/nextcloud\/data\/root\/files\/Documents\"\nSUPPORTED_EXTENSIONS = [\".pdf\", \".pptx\", \".docx\", \".md\", \".txt\"]\n\n# MariaDB Settings - Content Database (chunks, entities, semantic data)\nDB_CONFIG = {\n \"host\": \"localhost\",\n \"database\": \"ki_content\",\n \"user\": \"root\",\n \"password\": \"\", # Set via environment variable DB_PASSWORD\n \"charset\": \"utf8mb4\",\n}\n\n# Logging\/System Database (for pipeline_log)\nDB_LOG_CONFIG = {\n \"host\": \"localhost\",\n \"database\": \"ki_dev\",\n \"user\": \"root\",\n \"password\": \"\",\n \"charset\": \"utf8mb4\",\n}\n\n# Protokoll Database (for LLM call logging to ki_dev.protokoll)\nDB_PROTOKOLL_CONFIG = {\n \"host\": \"localhost\",\n \"database\": \"ki_dev\",\n \"user\": \"root\",\n \"password\": \"\",\n \"charset\": \"utf8mb4\",\n}\n\n# Qdrant Settings\nQDRANT_HOST = \"localhost\"\nQDRANT_PORT = 6333\nQDRANT_COLLECTIONS = {\n \"documents\": {\"size\": 1024, \"distance\": \"Cosine\"},\n \"mail\": {\"size\": 1024, \"distance\": \"Cosine\"},\n \"entities\": {\"size\": 1024, \"distance\": \"Cosine\"},\n}\n\n# Ollama Settings (Embeddings)\nOLLAMA_HOST = \"http:\/\/localhost:11434\"\nEMBEDDING_MODEL = \"mxbai-embed-large\"\nEMBEDDING_DIMENSION = 1024\n\n# Ollama Settings (Chat\/Generation)\nOLLAMA_CHAT_MODEL = \"gpt-oss:20b\"\n\n# Anthropic Settings (Chat\/Analysis)",
"numLines": 55,
"startLine": 1,
"totalLines": 112
}
}
}