gitextract_du4dxcr1/ ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── CHAPTERS_and_CODE_no_longer_in-book/ │ ├── README.md │ └── zapier_integrations/ │ ├── README.md │ ├── README_code.md │ ├── get_google_calendar.py │ ├── requirements.txt │ └── send_gmail.py ├── Makefile ├── README.md ├── cooking_recipes/ │ ├── README.md │ ├── data/ │ │ ├── .gitignore │ │ ├── correlated-ingredients.json │ │ ├── desert.json │ │ ├── fish.json │ │ ├── ingredients.json │ │ ├── meat.json │ │ ├── misc.json │ │ ├── recipes.json │ │ ├── tiny.json │ │ └── vegetarian.json │ ├── data.py │ ├── recipe_generator.py │ └── text_data/ │ ├── Aioli Sauce.txt │ ├── Apple Muffins.txt │ ├── Balsamic Mushrooms.txt │ ├── Barbecued Chicken.txt │ ├── Barbecued Eggplant.txt │ ├── Barbecued Salmon with Basil.txt │ ├── Basil Vinaigrette Salad Dressing.txt │ ├── Black Bean Dip.txt │ ├── Borscht.txt │ ├── Brined Barbecued Chicken.txt │ ├── Cauliflower and Broccoli Pizza Crust.txt │ ├── Chicken Cacciatore.txt │ ├── Chicken Schnitzel.txt │ ├── Chicken with Cream of Mushroom Soup.txt │ ├── Chinese Shrimp with Zucchini Squash.txt │ ├── Crock Pot Lemon Honey Chicken.txt │ ├── Curried Chicken Legs.txt │ ├── Curried Yogurt Dip.txt │ ├── Dijon Sour Cream Dip.txt │ ├── Dijon Yogurt Dip.txt │ ├── Easy Cake.txt │ ├── English Scones.txt │ ├── Fresh Tomato Sauce.txt │ ├── Fried Chicken.txt │ ├── Homemade Salad Dressing.txt │ ├── Honey Chinese Shrimp.txt │ ├── Honey-Curried Chicken.txt │ ├── Indonesian Barbecue Sauce.txt │ ├── Indonesian Chicken Sate.txt │ ├── Irene's Snickerdoodle Cookies.txt │ ├── Japanese Ginger Salad Dressing.txt │ ├── Lemon Sesame Broccoli.txt │ ├── Poached Salmon with Wine and Lemon.txt │ ├── Quick Sweet and Sour Sauce.txt │ ├── Scottish Shortbread.txt │ ├── Simple Italian Chicken.txt │ ├── Spicy Barbecued Chicken.txt │ ├── Spicy Braised Chicken.txt │ ├── Tasty Black Bean Dip.txt │ └── Whole Wheat Bread.txt ├── data/ │ ├── chemistry.txt │ ├── economics.txt │ ├── health.txt │ └── sports.txt ├── data_small/ │ └── sports.txt ├── embedchain_test/ │ ├── .gitignore │ ├── README.md │ ├── app.py │ ├── data/ │ │ ├── haskell-cookbook.txt │ │ └── lovinglisp-2.txt │ ├── process_pdfs.py │ └── requirements.txt ├── extraction/ │ ├── README.md │ ├── person_data.py │ └── prompt.txt ├── from_langchain_docs/ │ ├── README.md │ ├── gpt_4o_test.py │ ├── memory_langchain_test.py │ ├── requirements.txt │ └── search_simple.py ├── google_drive_llm/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── sports.txt │ ├── fetch_txt_files.py │ ├── index_and_QA.py │ └── requirements.txt ├── hugging_face/ │ ├── README.md │ ├── hf_transformer_local.py │ ├── requirements.txt │ ├── simple_example.py │ ├── test1.py │ └── throwaway_test.py ├── kg_search/ │ ├── Google_KG_helper.py │ ├── Google_Knowledge_Graph_Search.py │ └── README.md ├── kor/ │ ├── README.md │ └── dates.py ├── langchain_dbpedia_agent/ │ ├── QA.py │ ├── README.md │ ├── custom_func_dbpedia.py │ └── requirements.txt ├── langchain_getting_started/ │ ├── .gitignore │ ├── README.md │ ├── agent_test.py │ ├── chroma_persist_index.py │ ├── chroma_use_disk_index_for_query.py │ ├── country_information.py │ ├── directions_template.py │ ├── doc_search.py │ ├── read_text_files.py │ └── test.py ├── llama-index_case_study/ │ ├── .gitignore │ ├── README.md │ ├── requirements.txt │ └── web_page_QA.py ├── llama.cpp/ │ ├── README.md │ └── test.py ├── llm_enhanced_search_ddg_ollama/ │ ├── README.md │ └── llm_enhanced_search.py ├── neo4j/ │ ├── README.md │ ├── credentials.json │ └── test_example.py ├── ollama_langchain/ │ ├── README.md │ ├── llama3-instruct-8b.py │ ├── mistral-7b.py │ ├── rag_test.py │ └── requirements.txt ├── prompt_examples/ │ ├── two-shot-2-var.txt │ └── two-shot-2.txt ├── rag/ │ ├── README.md │ ├── requirements.txt │ ├── reranking_rag_llama_index.py │ ├── simple_llama_index_retrieve_docs.py │ └── simple_rag_llama_index.py ├── requirements.txt ├── sqlite/ │ ├── README.md │ ├── requirements.txt │ └── sqlite_chat_test.py ├── summarization/ │ ├── README.md │ ├── prompt.txt │ ├── requirements.txt │ └── summarization_example.py ├── tavily_search/ │ ├── READMS.md │ ├── langchain_test.py │ └── llamaindex_test.py ├── text_db_llm/ │ ├── README.md │ ├── data/ │ │ ├── chemistry.txt │ │ ├── economics.txt │ │ ├── health.txt │ │ └── sports.txt │ ├── requirements.txt │ └── text_db_llm.py ├── tool_search_math_example/ │ ├── requirements.txt │ └── tool_search_math_example.py └── tools_langchain/ ├── doc_example.py └── loop_collection_with_function.py