mirror of
https://github.com/hwchase17/langchain.git
synced 2026-07-15 15:40:34 +00:00
x
This commit is contained in:
@@ -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/",
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user