Create VENV
https://youtu.be/cECq33d-fuA?si=LuizLhgw9QagM7Zv Creating and Using Virtual Environments (venv) in Python¶  In this notebook, we will cover how to create a virtual environment, activate it, and install dependencies within the environment. Step 1: Check if venv is installed¶ Before creating a virtual environment, let’s ensure that the venv module is available. It is included with Python […]
Prompt Engineering in LangChain
prompt template Components¶ These are the core building blocks you can use when building applications. Components:¶ Prompt templates Chat models Messages LLMs Output parsers Document loaders Text splitters Embedding models Vector stores Retrievers Indexing Tools Multimodal Prompt Templates¶ Prompt Templates: Turn user input into instructions for a language model. Input: Use a dictionary where each […]