Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Learn LangChain, Pinecone & OpenAI: Build Next-Gen LLM Apps, а также все другие курсы, прямо сейчас!
Премиум
  1. Урок 1. 00:02:08
    How to Get the Most Out of This Course
  2. Урок 2. 00:05:28
    LangChain Demo
  3. Урок 3. 00:07:21
    Introduction to LangChain
  4. Урок 4. 00:11:32
    Setting Up the Environment: LangChain, Pinecone, and Python-dotenv
  5. Урок 5. 00:06:13
    LLM Models (Wrappers): GPT-3
  6. Урок 6. 00:04:41
    ChatModels: GPT-3.5-Turbo and GPT-4
  7. Урок 7. 00:05:11
    Prompt Templates
  8. Урок 8. 00:05:49
    Simple Chains
  9. Урок 9. 00:08:08
    Sequential Chains
  10. Урок 10. 00:04:00
    Introduction to LangChain Agents
  11. Урок 11. 00:05:34
    LangChain Agents in Action
  12. Урок 12. 00:02:06
    Short Recap of Embeddings
  13. Урок 13. 00:08:00
    Introduction to Vector Databases
  14. Урок 14. 00:10:19
    Diving into Pinecone, Part 1
  15. Урок 15. 00:09:28
    Diving into Pinecone, Part 2
  16. Урок 16. 00:08:47
    Splitting and Embedding Text Using LangChain
  17. Урок 17. 00:07:54
    Inserting the Embeddings into a Pinecone Index
  18. Урок 18. 00:08:01
    Asking Questions (Similarity Search)
  19. Урок 19. 00:01:08
    Jupyter AI
  20. Урок 20. 00:03:40
    Introduction to Jupyter AI and Other Coding Companions
  21. Урок 21. 00:04:16
    Installing Jupyter AI
  22. Урок 22. 00:12:27
    Using Jupyter AI in JupyterLab
  23. Урок 23. 00:04:37
    Setting Up Jupyter AI in Jupyter Notebook
  24. Урок 24. 00:06:25
    Using Jupyter AI in Jupyter Notebook
  25. Урок 25. 00:05:25
    Using Interpolation for More Advanced Use Cases
  26. Урок 26. 00:04:04
    Using Jupyter AI with Other Providers and Models
  27. Урок 27. 00:03:04
    Project Introduction
  28. Урок 28. 00:10:45
    Implementing a ChatGPT App with ChatPromptTemplates and Chains
  29. Урок 29. 00:06:45
    Adding Chat Memory Using ConversationBufferMemory
  30. Урок 30. 00:04:59
    Saving Chat Sessions
  31. Урок 31. 00:06:08
    Project Introduction
  32. Урок 32. 00:07:27
    Loading Your Custom (Private) PDF Documents
  33. Урок 33. 00:05:12
    Loading Different Document Formats
  34. Урок 34. 00:04:37
    Public and Private Service Loaders
  35. Урок 35. 00:06:38
    Chunking Strategies and Splitting the Documents
  36. Урок 36. 00:11:16
    Embedding and Uploading to a Vector Database (Pinecone)
  37. Урок 37. 00:10:33
    Asking and Getting Answers
  38. Урок 38. 00:09:05
    Adding Memory (Chat History)
  39. Урок 39. 00:05:27
    Project Introduction and Library Installation
  40. Урок 40. 00:06:20
    Defining Functions
  41. Урок 41. 00:06:04
    Creating the Sidebar
  42. Урок 42. 00:06:23
    Reading, Chunking, and Embedding Data
  43. Урок 43. 00:05:27
    Asking Questions and Getting Answers
  44. Урок 44. 00:06:10
    Saving the Chat History
  45. Урок 45. 00:05:02
    Clearing Session State History Using Callback Functions
  46. Урок 46. 00:01:42
    Project Introduction
  47. Урок 47. 00:05:33
    Summarizing Using a Basic Prompt
  48. Урок 48. 00:05:04
    Summarizing using Prompt Templates
  49. Урок 49. 00:06:01
    Summarizing Using StuffDocumentsChain
  50. Урок 50. 00:06:07
    Summarizing Large Documents Using map_reduce
  51. Урок 51. 00:04:54
    map_reduce With Custom Prompts
  52. Урок 52. 00:07:44
    Summarizing Using the refine CombineDocumentChain
  53. Урок 53. 00:04:27
    refine With Custom Prompts
  54. Урок 54. 00:05:12
    Summarizing Using LangChain Agents
  55. Урок 55. 00:00:53
    Project Introduction
  56. Урок 56. 00:11:30
    Building the App
  57. Урок 57. 00:08:23
    Displaying the Chat History
  58. Урок 58. 00:03:21
    Testing the App
  59. Урок 59. 00:04:42
    Introduction to Streamlit
  60. Урок 60. 00:05:42
    Streamlit Main Concepts
  61. Урок 61. 00:05:46
    Displaying Data on the Screen: st.write() and Magic
  62. Урок 62. 00:05:12
    Widgets, Part 1: text_input, number_input, button
  63. Урок 63. 00:07:34
    Widgets, Part 2: checkbox, radio, select
  64. Урок 64. 00:10:29
    Widgets, Part 3: slider, file_uploader, camera_input, image
  65. Урок 65. 00:01:59
    Layout: Sidebar
  66. Урок 66. 00:05:33
    Layout: Columns
  67. Урок 67. 00:02:12
    Layout: Expander
  68. Урок 68. 00:04:01
    Displaying a Progress Bar
  69. Урок 69. 00:09:08
    Session State
  70. Урок 70. 00:07:13
    Callbacks
  71. Урок 71. 00:04:06
    While and continue Statements
  72. Урок 72. 00:05:36
    While and break Statements
  73. Урок 73. 00:07:15
    List Slicing and Iteration
  74. Урок 74. 00:06:03
    List Comprehension - Part 1
  75. Урок 75. 00:06:27
    List Comprehension - Part 2
  76. Урок 76. 00:10:28
    Working with Dictionaries
  77. Урок 77. 00:06:30
    JSON Data Serialization
  78. Урок 78. 00:05:37
    JSON Data Deserialization
  79. Урок 79. 00:01:47
    Assignment: JSON and Requests/REST API
  80. Урок 80. 00:03:55
    Assignment Answer: JSON and Requests/REST API
  81. Урок 81. 00:14:40
    Installing Jupyter Notebook and Google Colab