├── .env.example ├── .gitignore ├── LICENSE.md ├── README.md ├── agents ├── create-podcast-agent │ ├── example-outputs │ │ ├── blog-posts-example │ │ │ └── current_events_of_palantir_company_blog_post.md │ │ ├── conversation-transcripts │ │ │ └── current_events_of_palantir_company_dialogue.json │ │ └── conversation_audio │ │ │ └── current_events_of_palantir_company_dialogue.mp3 │ └── podcast_agent.py └── youtube-research-agent │ ├── config │ ├── __init__.py │ └── settings.py │ ├── summary-agent-output │ └── agent-output │ │ └── The_Everything_Code_Debt_Demographics_And_The_Infinite_Human_Future__Raoul_Pal.md │ └── summary_agent.py ├── requirements.txt └── tools ├── __init__.py ├── content_generation_toolkit.py ├── text_to_voice_toolkit.py ├── transcribe_toolkit.py └── youtube_toolkit.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayyzad/phidata-agent-examples/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayyzad/phidata-agent-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayyzad/phidata-agent-examples/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayyzad/phidata-agent-examples/HEAD/README.md -------------------------------------------------------------------------------- /agents/create-podcast-agent/example-outputs/blog-posts-example/current_events_of_palantir_company_blog_post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayyzad/phidata-agent-examples/HEAD/agents/create-podcast-agent/example-outputs/blog-posts-example/current_events_of_palantir_company_blog_post.md -------------------------------------------------------------------------------- /agents/create-podcast-agent/example-outputs/conversation-transcripts/current_events_of_palantir_company_dialogue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayyzad/phidata-agent-examples/HEAD/agents/create-podcast-agent/example-outputs/conversation-transcripts/current_events_of_palantir_company_dialogue.json -------------------------------------------------------------------------------- /agents/create-podcast-agent/example-outputs/conversation_audio/current_events_of_palantir_company_dialogue.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayyzad/phidata-agent-examples/HEAD/agents/create-podcast-agent/example-outputs/conversation_audio/current_events_of_palantir_company_dialogue.mp3 -------------------------------------------------------------------------------- /agents/create-podcast-agent/podcast_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayyzad/phidata-agent-examples/HEAD/agents/create-podcast-agent/podcast_agent.py -------------------------------------------------------------------------------- /agents/youtube-research-agent/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/youtube-research-agent/config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayyzad/phidata-agent-examples/HEAD/agents/youtube-research-agent/config/settings.py -------------------------------------------------------------------------------- /agents/youtube-research-agent/summary-agent-output/agent-output/The_Everything_Code_Debt_Demographics_And_The_Infinite_Human_Future__Raoul_Pal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayyzad/phidata-agent-examples/HEAD/agents/youtube-research-agent/summary-agent-output/agent-output/The_Everything_Code_Debt_Demographics_And_The_Infinite_Human_Future__Raoul_Pal.md -------------------------------------------------------------------------------- /agents/youtube-research-agent/summary_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayyzad/phidata-agent-examples/HEAD/agents/youtube-research-agent/summary_agent.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayyzad/phidata-agent-examples/HEAD/requirements.txt -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | # Empty file to make the directory a Python package -------------------------------------------------------------------------------- /tools/content_generation_toolkit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayyzad/phidata-agent-examples/HEAD/tools/content_generation_toolkit.py -------------------------------------------------------------------------------- /tools/text_to_voice_toolkit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayyzad/phidata-agent-examples/HEAD/tools/text_to_voice_toolkit.py -------------------------------------------------------------------------------- /tools/transcribe_toolkit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayyzad/phidata-agent-examples/HEAD/tools/transcribe_toolkit.py -------------------------------------------------------------------------------- /tools/youtube_toolkit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayyzad/phidata-agent-examples/HEAD/tools/youtube_toolkit.py --------------------------------------------------------------------------------