├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── PodcastSnippet.mp3 ├── PodcastSocialMediaCopilot.py ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── dalle_helper.py ├── images └── PodcastCopilotDataFlow.png ├── instruct_pipeline.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PodcastCopilot/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PodcastCopilot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PodcastCopilot/HEAD/LICENSE -------------------------------------------------------------------------------- /PodcastSnippet.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PodcastCopilot/HEAD/PodcastSnippet.mp3 -------------------------------------------------------------------------------- /PodcastSocialMediaCopilot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PodcastCopilot/HEAD/PodcastSocialMediaCopilot.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PodcastCopilot/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PodcastCopilot/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PodcastCopilot/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /dalle_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PodcastCopilot/HEAD/dalle_helper.py -------------------------------------------------------------------------------- /images/PodcastCopilotDataFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PodcastCopilot/HEAD/images/PodcastCopilotDataFlow.png -------------------------------------------------------------------------------- /instruct_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PodcastCopilot/HEAD/instruct_pipeline.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PodcastCopilot/HEAD/requirements.txt --------------------------------------------------------------------------------