mirror of
https://github.com/hwchase17/langchain.git
synced 2026-02-21 22:56:05 +00:00
Also want to add an index/rollup page to LangSmith docs to enable linking to a how-to category as a group (e.g. https://docs.smith.langchain.com/how_to_guides/evaluation/) CC @agola11 @hinthornw
55 lines
2.2 KiB
Plaintext
55 lines
2.2 KiB
Plaintext
---
|
|
sidebar_position: 0
|
|
sidebar_class_name: hidden
|
|
---
|
|
# Tutorials
|
|
|
|
New to LangChain or to LLM app development in general? Read this material to quickly get up and running.
|
|
|
|
## Basics
|
|
- [Build a Simple LLM Application with LCEL](/docs/tutorials/llm_chain)
|
|
- [Build a Chatbot](/docs/tutorials/chatbot)
|
|
- [Build vector stores and retrievers](/docs/tutorials/retrievers)
|
|
- [Build an Agent](/docs/tutorials/agents)
|
|
|
|
## Working with external knowledge
|
|
- [Build a Retrieval Augmented Generation (RAG) Application](/docs/tutorials/rag)
|
|
- [Build a Conversational RAG Application](/docs/tutorials/qa_chat_history)
|
|
- [Build a Question/Answering system over SQL data](/docs/tutorials/sql_qa)
|
|
- [Build a Query Analysis System](/docs/tutorials/query_analysis)
|
|
- [Build a local RAG application](/docs/tutorials/local_rag)
|
|
- [Build a Question Answering application over a Graph Database](/docs/tutorials/graph)
|
|
- [Build a PDF ingestion and Question/Answering system](/docs/tutorials/pdf_qa/)
|
|
|
|
## Specialized tasks
|
|
- [Build an Extraction Chain](/docs/tutorials/extraction)
|
|
- [Generate synthetic data](/docs/tutorials/data_generation)
|
|
- [Classify text into labels](/docs/tutorials/classification)
|
|
- [Summarize text](/docs/tutorials/summarization)
|
|
|
|
## LangGraph
|
|
|
|
LangGraph is an extension of LangChain aimed at
|
|
building robust and stateful multi-actor applications with LLMs by modeling steps as edges and nodes in a graph.
|
|
|
|
LangGraph documentation is currently hosted on a separate site.
|
|
You can peruse [LangGraph tutorials here](https://langchain-ai.github.io/langgraph/tutorials/).
|
|
|
|
## LangSmith
|
|
|
|
LangSmith allows you to closely trace, monitor and evaluate your LLM application.
|
|
It seamlessly integrates with LangChain, and you can use it to inspect and debug individual steps of your chains as you build.
|
|
|
|
LangSmith documentation is hosted on a separate site.
|
|
You can peruse [LangSmith tutorials here](https://docs.smith.langchain.com/tutorials/).
|
|
|
|
### Evaluation
|
|
|
|
LangSmith helps you evaluate the performance of your LLM applications. The below tutorial is a great way to get started:
|
|
|
|
- [Evaluate your LLM application](https://docs.smith.langchain.com/tutorials/Developers/evaluation)
|
|
|
|
## More
|
|
|
|
For more tutorials, see our [cookbook section](https://github.com/langchain-ai/langchain/tree/master/cookbook).
|