def create_seed_terms()

in cookbook-efforts/domain-specific-datasets/project_app/utils.py [0:0]


def create_seed_terms(topics: list[str], perspectives: list[str]) -> list[str]:
    """Create seed terms for self intruct to start from."""

    return [
        f"{topic} from a {perspective} perspective"
        for topic in topics
        for perspective in perspectives
    ]