/langchain-openai-copilot

Learn all about LLMs

Primary LanguageJupyter NotebookMIT LicenseMIT

LangChain, OpenAI, LLMs, Oh My! Finding your way home through AI

Key Terms to know:

def llm_key_terms():
  terms = {
    'tokens': 'a single unit of text',
    'embedding': 'convert tokens into vectors',
    'vectors': 'numerical representations of tokens',
    'vectorstore': 'a database that stores vectors',
    'transformers': 'neural network architecture used in LLMs',
    'pre-training': 'training a model on a large dataset of text',
    'fine tuning': 'training a pre-trained model on a specific task',
    'RAG' : 'prompting method that uses retrieval to add more context to a prompt',
  }
  return terms

Resources to learn more: