├── .env.sample ├── .gitignore ├── README.md ├── examine_image.py ├── extract_newsletter_pdf.py ├── extract_podcast.py ├── extract_podcast_split.py ├── extract_youtube.py ├── files ├── citrini_24_trades.pdf └── ipo_pulse.png ├── requirements.txt ├── split_audio.sh └── youtube_guru.py /.env.sample: -------------------------------------------------------------------------------- 1 | GOOGLE_API_KEY=your_google_api_key -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/gemini-multimodal-structured-extraction/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/gemini-multimodal-structured-extraction/HEAD/README.md -------------------------------------------------------------------------------- /examine_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/gemini-multimodal-structured-extraction/HEAD/examine_image.py -------------------------------------------------------------------------------- /extract_newsletter_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/gemini-multimodal-structured-extraction/HEAD/extract_newsletter_pdf.py -------------------------------------------------------------------------------- /extract_podcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/gemini-multimodal-structured-extraction/HEAD/extract_podcast.py -------------------------------------------------------------------------------- /extract_podcast_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/gemini-multimodal-structured-extraction/HEAD/extract_podcast_split.py -------------------------------------------------------------------------------- /extract_youtube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/gemini-multimodal-structured-extraction/HEAD/extract_youtube.py -------------------------------------------------------------------------------- /files/citrini_24_trades.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/gemini-multimodal-structured-extraction/HEAD/files/citrini_24_trades.pdf -------------------------------------------------------------------------------- /files/ipo_pulse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/gemini-multimodal-structured-extraction/HEAD/files/ipo_pulse.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/gemini-multimodal-structured-extraction/HEAD/requirements.txt -------------------------------------------------------------------------------- /split_audio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/gemini-multimodal-structured-extraction/HEAD/split_audio.sh -------------------------------------------------------------------------------- /youtube_guru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/gemini-multimodal-structured-extraction/HEAD/youtube_guru.py --------------------------------------------------------------------------------