This commit is contained in:
Chester Curme
2025-05-29 15:27:45 -04:00
parent 49eeb0f3c3
commit fa01d4dbc7
2 changed files with 49 additions and 5 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,9 +27,30 @@ module.exports = {
},
{
type: "category",
link: {type: 'doc', id: 'tutorials/index'},
label: "Tutorials",
label: "Chat models",
collapsible: false,
items: [
{type: "doc", id: "concepts/chat_models", label: "Overview"},
{
type: "category",
label: "Messages",
collapsible: false,
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: false,
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", label: "Available integrations"},
],
items: [{
type: 'autogenerated',
dirName: 'tutorials',
@@ -38,12 +59,16 @@ module.exports = {
},
{
type: "category",
link: {type: 'doc', id: 'how_to/index'},
label: "How-to guides",
label: "Embedding models",
collapsible: false,
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", label: "Available integrations"},
],
items: [{
type: 'autogenerated',
dirName: 'how_to',
dirName: 'tutorials',
className: 'hidden',
}],
},
@@ -426,6 +451,19 @@ module.exports = {
},
},
],
examples: [
{
type: 'category',
label: 'Examples',
collapsible: false,
items: [
{
type: 'autogenerated',
dirName: 'tutorials',
},
],
},
],
contributing: [
{
type: "doc",