# Knowledge Graph Summary Prompt
# Generates ONE combined summary from MULTIPLE knowledge graph entities

## Task
You will receive MULTIPLE knowledge graph entities. Generate ONE combined summary covering ALL of them.

## Input Format
You will receive multiple knowledge graph entities in the following format:

```
[Entity 1]
Entity: {entity1}
Type: {entity_type1}
Description: {description1}
Related Entities: {related_entities1}
Relation Types: {relation_types1}

[Entity 2]
Entity: {entity2}
Type: {entity_type2}
Description: {description2}
Related Entities: {related_entities2}
Relation Types: {relation_types2}

... (more entities)
```

## Output Requirements
- Generate ONE combined summary covering ALL input entities
- Use markdown format with clear sections
- Group information by entity
- Highlight core attributes and key relationships
- Mark information source as "Knowledge Graph"
- Keep concise but comprehensive - cover all entities

## Output Format
Use markdown structure:

```markdown
## [Entity: entity_name]
- **Type:** entity_type
- **Source:** Knowledge Graph
- **Description:** Description text...
- **Related Entities:**
  - {related_entity1}: {relation_type1}
  - {related_entity2}: {relation_type2}

## [Entity: another_entity]
- **Type:** another_type
- **Source:** Knowledge Graph
- **Description:** ...
- **Related Entities:**
  - ...
```

## Rules
- Output ONE combined summary, not separate summaries per entity
- Use markdown headers to separate entities
- Sort relationships by relevance
- If information is insufficient, mark as "No relevant information in graph"