def make_producer()

in podcast/main.py [0:0]


def make_producer(gemini):
    return Agent(
        role="Podcaster producer",
        goal="Produce a podcast by eliciting responses from your podcasters",
        backstory=(
            dedent(
                """\
                You are an expect podcast producer; you know how to
                elicit dialog from your podcasters on a topic.

                Here are your podcasters:

                {elena}

                {marcus}"""
            )
        ),
        llm=gemini,
        verbose=True,
    )