{
"event": "PreToolUse",
"tool_name": "Read",
"tool_input": {
"file_path": "\/var\/www\/dev.campus.systemische-tools.de\/src\/Infrastructure\/AI\/ModelConfig.php",
"limit": 30
}
}
{
"tool_response": {
"type": "text",
"file": {
"filePath": "\/var\/www\/dev.campus.systemische-tools.de\/src\/Domain\/Repository\/ChatSessionRepositoryInterface.php",
"content": "<?php\n\ndeclare(strict_types=1);\n\nnamespace Domain\\Repository;\n\n\/\/ @responsibility: Vertrag für Chat-Session-Persistenz\n\nuse Domain\\Entity\\ChatSession;\n\ninterface ChatSessionRepositoryInterface\n{\n \/**\n * Find session by UUID.\n *\/\n public function findByUuid(string $uuid): ?ChatSession;\n\n \/**\n * Get all sessions with statistics.\n *\n * @return array<int, ChatSession>\n *\/\n public function findAll(int $limit = 50): array;\n\n \/**\n * Get all sessions as arrays (for list views with aggregated data).\n *\n * @return array<int, array<string, mixed>>\n *\/\n public function findAllWithStats(int $limit = 50): array;\n\n \/**\n * Save a session (create or update).\n *\/\n public function save(ChatSession $session): int;\n\n \/**\n * Create a new session (legacy - use save() instead).\n *\n * @deprecated Use save() with ChatSession entity\n *\/\n public function create(string $uuid, string $model, string $collections, int $contextLimit): int;\n\n \/**\n * Update session title.\n *\/\n public function updateTitle(int $sessionId, string $title): void;\n\n \/**\n * Update session settings.\n *\n * @param array<string> $collections\n *\/\n public function updateSettings(\n int $sessionId,\n string $model,\n array $collections,\n int $contextLimit,\n ?int $authorProfileId,\n float $temperature,",
"numLines": 60,
"startLine": 1,
"totalLines": 89
}
}
}