Compare commits

...

3 Commits

Author SHA1 Message Date
Jacob Lee fd7f041d6b
docs[patch]: Increase line height (#20960)
Help with readability, reduce intimidation factor

@hwchase17
1 month ago
Jacob Lee 19a2f59713
docs[patch]: Hide navbar item on old versions (#20953)
@hwchase17 @ccurme @efriis
1 month ago
Harrison Chase be73daaa64 cr 1 month ago

@ -164,6 +164,7 @@ const config = {
docId: "modules/index", docId: "modules/index",
label: "Components", label: "Components",
position: "left", position: "left",
className: "hidden-0\.2\.x",
}, },
{ {
type: "docSidebar", type: "docSidebar",

@ -36,7 +36,7 @@
--ifm-code-font-size: 95%; --ifm-code-font-size: 95%;
--ifm-font-family-base: 'Public Sans'; --ifm-font-family-base: 'Public Sans';
--ifm-menu-link-padding-horizontal: 0.5rem; --ifm-menu-link-padding-horizontal: 0.5rem;
--ifm-menu-link-padding-vertical: 0.375rem; --ifm-menu-link-padding-vertical: 0.5rem;
--doc-sidebar-width: 275px !important; --doc-sidebar-width: 275px !important;
} }
@ -55,6 +55,10 @@ nav, h1, h2, h3, h4 {
font-family: 'Manrope'; font-family: 'Manrope';
} }
.docs-version-0\.2\.x .hidden-0\.2\.x {
display: none;
}
.footer__links { .footer__links {
margin-top: 1rem; margin-top: 1rem;
margin-bottom: 3rem; margin-bottom: 3rem;
@ -197,6 +201,10 @@ nav, h1, h2, h3, h4 {
opacity: 0.5; opacity: 0.5;
} }
.markdown {
line-height: 2em;
}
.markdown > h2 { .markdown > h2 {
margin-top: 2rem; margin-top: 2rem;
border-bottom-color: var(--ifm-color-primary); border-bottom-color: var(--ifm-color-primary);

@ -43,12 +43,14 @@ These docs focus on the Python LangChain library. [Head here](https://js.langcha
## [Tutorials](/docs/tutorials) ## [Tutorials](/docs/tutorials)
If you're looking to build something specific or are more of a hands-on learner, check out our [tutorials](/docs/tutorials). If you're looking to build something specific or are more of a hands-on learner, check out our [tutorials](/docs/tutorials).
They're walkthroughs and techniques for common end-to-end tasks, such as: This is the best place to get started.
- [Question answering with RAG](/docs/use_cases/question_answering/) These are the best ones to get started with:
- [Extracting structured output](/docs/use_cases/extraction/) - [Build a Simple LLM Application](/docs/tutorials/llm_chain)
- [Chatbots](/docs/use_cases/chatbots/) - [Build a Chatbot](/docs/tutorials/chatbot)
- and more! - [Build an Agent](/docs/tutorials/agents)
Explore the full list of tutorials [here](/docs/tutorials).
## [How-To Guides](/docs/how_to_guides) ## [How-To Guides](/docs/how_to_guides)

@ -1,21 +1,6 @@
{ {
"docs": [ "docs": [
{ "get_started/introduction",
"type": "category",
"label": "Get started",
"collapsed": false,
"collapsible": false,
"items": [
{
"type": "autogenerated",
"dirName": "get_started"
}
],
"link": {
"type": "doc",
"id": "get_started/introduction"
}
},
{ {
"type": "category", "type": "category",
"label": "Tutorials", "label": "Tutorials",

Loading…
Cancel
Save