├── .gitignore ├── README.md ├── app.py ├── chroma_emb.py ├── chroma_openai_emb.py ├── chroma_persist.py ├── data └── new_articles │ ├── 05-03-ai-powered-supply-chain-startup-pando-lands-30m-investment.txt │ ├── 05-03-ai-replace-tv-writers-strike.txt │ ├── 05-03-chatgpt-everything-you-need-to-know-about-the-ai-powered-chatbot.txt │ ├── 05-03-checks-the-ai-powered-data-protection-project-incubated-in-area-120-officially-exits-to-google.txt │ ├── 05-03-databricks-acquires-ai-centric-data-governance-platform-okera.txt │ ├── 05-03-nova-is-building-guardrails-for-generative-ai-content-to-protect-brand-integrity.txt │ ├── 05-03-spawning-lays-out-its-plans-for-letting-creators-opt-out-of-generative-ai-training.txt │ ├── 05-04-cma-generative-ai-review.txt │ ├── 05-04-hugging-face-and-servicenow-release-a-free-code-generating-model.txt │ ├── 05-04-microsoft-doubles-down-on-ai-with-new-bing-features.txt │ ├── 05-04-slack-updates-aim-to-put-ai-at-the-center-of-the-user-experience.txt │ ├── 05-05-google-and-openai-are-walmarts-besieged-by-fruit-stands.txt │ ├── 05-05-google-i-o-2023-is-next-week-heres-what-were-expecting.txt │ ├── 05-05-vint-cerf-on-the-exhilarating-mix-of-thrill-and-hazard-at-the-frontiers-of-tech.txt │ ├── 05-05-with-deepfloyd-generative-ai-art-gets-a-text-upgrade.txt │ ├── 05-06-ai-startups-q1-investments.txt │ ├── 05-06-amazon-launches-free-channels-check-marks-come-to-gmail-and-openai-raises-more-moolah.txt │ ├── 05-06-this-week-in-apps-apple-and-google-team-up-on-trackers-google-i-o-preview-apps-hit-newfronts.txt │ ├── 05-07-3one4-capital-driven-by-contrarian-bets-raises-200-million-new-fund.txt │ ├── 05-07-fintech-space-continues-to-be-competitive-and-drama-filled.txt │ └── 05-07-spacex-starship-startups-future.txt ├── pinecone_db_llm_lang_chain.py ├── pinecone_intro.py ├── raw_emb.py ├── vector_db_llm.py └── vector_db_llm_lang_chain.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/app.py -------------------------------------------------------------------------------- /chroma_emb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/chroma_emb.py -------------------------------------------------------------------------------- /chroma_openai_emb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/chroma_openai_emb.py -------------------------------------------------------------------------------- /chroma_persist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/chroma_persist.py -------------------------------------------------------------------------------- /data/new_articles/05-03-ai-powered-supply-chain-startup-pando-lands-30m-investment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/data/new_articles/05-03-ai-powered-supply-chain-startup-pando-lands-30m-investment.txt -------------------------------------------------------------------------------- /data/new_articles/05-03-ai-replace-tv-writers-strike.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/data/new_articles/05-03-ai-replace-tv-writers-strike.txt -------------------------------------------------------------------------------- /data/new_articles/05-03-chatgpt-everything-you-need-to-know-about-the-ai-powered-chatbot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/data/new_articles/05-03-chatgpt-everything-you-need-to-know-about-the-ai-powered-chatbot.txt -------------------------------------------------------------------------------- /data/new_articles/05-03-checks-the-ai-powered-data-protection-project-incubated-in-area-120-officially-exits-to-google.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/data/new_articles/05-03-checks-the-ai-powered-data-protection-project-incubated-in-area-120-officially-exits-to-google.txt -------------------------------------------------------------------------------- /data/new_articles/05-03-databricks-acquires-ai-centric-data-governance-platform-okera.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/data/new_articles/05-03-databricks-acquires-ai-centric-data-governance-platform-okera.txt -------------------------------------------------------------------------------- /data/new_articles/05-03-nova-is-building-guardrails-for-generative-ai-content-to-protect-brand-integrity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/data/new_articles/05-03-nova-is-building-guardrails-for-generative-ai-content-to-protect-brand-integrity.txt -------------------------------------------------------------------------------- /data/new_articles/05-03-spawning-lays-out-its-plans-for-letting-creators-opt-out-of-generative-ai-training.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/data/new_articles/05-03-spawning-lays-out-its-plans-for-letting-creators-opt-out-of-generative-ai-training.txt -------------------------------------------------------------------------------- /data/new_articles/05-04-cma-generative-ai-review.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/data/new_articles/05-04-cma-generative-ai-review.txt -------------------------------------------------------------------------------- /data/new_articles/05-04-hugging-face-and-servicenow-release-a-free-code-generating-model.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/data/new_articles/05-04-hugging-face-and-servicenow-release-a-free-code-generating-model.txt -------------------------------------------------------------------------------- /data/new_articles/05-04-microsoft-doubles-down-on-ai-with-new-bing-features.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/data/new_articles/05-04-microsoft-doubles-down-on-ai-with-new-bing-features.txt -------------------------------------------------------------------------------- /data/new_articles/05-04-slack-updates-aim-to-put-ai-at-the-center-of-the-user-experience.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/data/new_articles/05-04-slack-updates-aim-to-put-ai-at-the-center-of-the-user-experience.txt -------------------------------------------------------------------------------- /data/new_articles/05-05-google-and-openai-are-walmarts-besieged-by-fruit-stands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/data/new_articles/05-05-google-and-openai-are-walmarts-besieged-by-fruit-stands.txt -------------------------------------------------------------------------------- /data/new_articles/05-05-google-i-o-2023-is-next-week-heres-what-were-expecting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/data/new_articles/05-05-google-i-o-2023-is-next-week-heres-what-were-expecting.txt -------------------------------------------------------------------------------- /data/new_articles/05-05-vint-cerf-on-the-exhilarating-mix-of-thrill-and-hazard-at-the-frontiers-of-tech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/data/new_articles/05-05-vint-cerf-on-the-exhilarating-mix-of-thrill-and-hazard-at-the-frontiers-of-tech.txt -------------------------------------------------------------------------------- /data/new_articles/05-05-with-deepfloyd-generative-ai-art-gets-a-text-upgrade.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/data/new_articles/05-05-with-deepfloyd-generative-ai-art-gets-a-text-upgrade.txt -------------------------------------------------------------------------------- /data/new_articles/05-06-ai-startups-q1-investments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/data/new_articles/05-06-ai-startups-q1-investments.txt -------------------------------------------------------------------------------- /data/new_articles/05-06-amazon-launches-free-channels-check-marks-come-to-gmail-and-openai-raises-more-moolah.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/data/new_articles/05-06-amazon-launches-free-channels-check-marks-come-to-gmail-and-openai-raises-more-moolah.txt -------------------------------------------------------------------------------- /data/new_articles/05-06-this-week-in-apps-apple-and-google-team-up-on-trackers-google-i-o-preview-apps-hit-newfronts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/data/new_articles/05-06-this-week-in-apps-apple-and-google-team-up-on-trackers-google-i-o-preview-apps-hit-newfronts.txt -------------------------------------------------------------------------------- /data/new_articles/05-07-3one4-capital-driven-by-contrarian-bets-raises-200-million-new-fund.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/data/new_articles/05-07-3one4-capital-driven-by-contrarian-bets-raises-200-million-new-fund.txt -------------------------------------------------------------------------------- /data/new_articles/05-07-fintech-space-continues-to-be-competitive-and-drama-filled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/data/new_articles/05-07-fintech-space-continues-to-be-competitive-and-drama-filled.txt -------------------------------------------------------------------------------- /data/new_articles/05-07-spacex-starship-startups-future.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/data/new_articles/05-07-spacex-starship-startups-future.txt -------------------------------------------------------------------------------- /pinecone_db_llm_lang_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/pinecone_db_llm_lang_chain.py -------------------------------------------------------------------------------- /pinecone_intro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/pinecone_intro.py -------------------------------------------------------------------------------- /raw_emb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/raw_emb.py -------------------------------------------------------------------------------- /vector_db_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/vector_db_llm.py -------------------------------------------------------------------------------- /vector_db_llm_lang_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdichone/vector-databases-course/HEAD/vector_db_llm_lang_chain.py --------------------------------------------------------------------------------