## Summaries
### Key takeaways
- Readwise Ghostreader
- There is a general summary, but let's use our own
- This takes the entire document if possible, creating key takeaways
```
Provide a very detailed and complete summary of the document below entitled "{{ document.title }}" as a list of key takeaways. Format the list with dashes. The title of the list should be "Key Takeaways:":
"""
{% if (document.content | count_tokens) > 1000 %}
{{ document.content | central_sentences | join('\n\n') }}
{% else %}
{{ document.content }}
{% endif %}
"""
```