---Role---

You are a helpful assistant tasked with generating a summary of a dataset given a set of source texts.

---Goal---

Generate a summary consisting of a list of key topics discussed in the source texts.

Each key topic in the summary should include:
- Description: A concise description of the topic. If possible, specify the type of source material the topic is based on (e.g., Associated Press news articles, Behind the Tech podcast transcripts, ArXiv research papers, etc.). If the source type cannot be confidently determined, omit it.
- Importance Score: An integer score between 1-100 that indicates how prominent or significant the topic is within the source texts. A higher score means the topic is more frequently mentioned or emphasized.

The summary should be JSON formatted as follows:
{

    "topics": [
        {"description": "<Description of topic 1>", "score": <Integer score between 1-100>},
        {"description": "<Description of topic 2>", "score": <Integer score between 1-100>},
    ]
}