Compare commits

...

4 Commits

Author SHA1 Message Date
Chester Curme
1541624874 x 2025-05-29 16:42:25 -04:00
Chester Curme
ab6c45f5de x 2025-05-29 16:02:46 -04:00
Chester Curme
eb04b5b0a7 fix 2025-05-29 15:45:43 -04:00
Chester Curme
fa01d4dbc7 x 2025-05-29 15:27:45 -04:00
2 changed files with 122 additions and 27 deletions

View File

@@ -168,6 +168,12 @@ const config = {
sidebarId: "integrations",
label: "Integrations",
},
{
type: "docSidebar",
position: "left",
sidebarId: "examples",
label: "Examples",
},
{
label: "API Reference",
to: "https://python.langchain.com/api_reference/",

View File

@@ -27,36 +27,44 @@ module.exports = {
},
{
type: "category",
link: {type: 'doc', id: 'tutorials/index'},
label: "Tutorials",
collapsible: false,
items: [{
type: 'autogenerated',
dirName: 'tutorials',
className: 'hidden',
}],
label: "Chat models",
collapsible: true,
collapsed: true,
items: [
{type: "doc", id: "concepts/chat_models", label: "Overview"},
{
type: "category",
label: "Messages",
collapsible: true,
collapsed: true,
items: [
{type: "doc", id: "concepts/messages", label: "Overview"},
{type: "doc", id: "how_to/trim_messages", label: "How to use messages"},
],
},
{
type: "category",
label: "Tool-calling",
collapsible: true,
collapsed: true,
items: [
{type: "doc", id: "concepts/tool_calling", label: "Overview"},
{type: "doc", id: "how_to/tool_calling", label: "How to call tools"},
],
},
{type: "doc", id: "integrations/chat/index", label: "Available integrations"},
],
},
{
type: "category",
link: {type: 'doc', id: 'how_to/index'},
label: "How-to guides",
collapsible: false,
items: [{
type: 'autogenerated',
dirName: 'how_to',
className: 'hidden',
}],
},
{
type: "category",
link: {type: 'doc', id: 'concepts/index'},
label: "Conceptual guide",
collapsible: false,
items: [{
type: 'autogenerated',
dirName: 'concepts',
className: 'hidden',
}],
label: "Embedding models",
collapsible: true,
collapsed: true,
items: [
{type: "doc", id: "concepts/embedding_models", label: "Overview"},
{type: "doc", id: "how_to/embed_text", label: "How to use embedding models"},
{type: "doc", id: "integrations/text_embedding/index", label: "Available integrations"},
],
},
{
type: "category",
@@ -426,6 +434,87 @@ module.exports = {
},
},
],
examples: [
{
type: "category",
link: {type: 'doc', id: 'tutorials/index'},
label: "Examples",
collapsible: false,
items: [
{
type: "category",
label: "Get started",
collapsible: true,
collapsed: false,
items: [
{
type: "doc",
id: "tutorials/llm_chain",
label: "Chat models and prompts",
},
{
type: "doc",
id: "tutorials/retrievers",
label: "Semantic search",
},
{
type: "doc",
id: "tutorials/classification",
label: "Classification",
},
{
type: "doc",
id: "tutorials/extraction",
label: "Extraction",
},
],
},
{
type: "category",
label: "Orchestration",
collapsible: true,
collapsed: false,
items: [
{
type: "doc",
id: "tutorials/chatbot",
label: "Chatbots",
},
{
type: "doc",
id: "tutorials/agents",
label: "Agents",
},
{
type: "doc",
id: "tutorials/rag",
label: "Retrieval-Augmented Generation (RAG) Part 1",
},
{
type: "doc",
id: "tutorials/qa_chat_history",
label: "Retrieval-Augmented Generation (RAG) Part 2",
},
{
type: "doc",
id: "tutorials/sql_qa",
label: "Question-Answering with SQL",
},
{
type: "doc",
id: "tutorials/summarization",
label: "Summarization",
},
{
type: "doc",
id: "tutorials/graph",
label: "Question-Answering with Graph Databases",
},
],
},
],
},
],
contributing: [
{
type: "doc",