Skip to content

Add Langchain tab in Pebblo Docs #497

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 41 additions & 31 deletions docs/gh_pages/sidebars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,20 +52,30 @@ const sidebars: SidebarsConfig = {
],
},
{
type: "doc",
id: "rag", // document ID
label: "Safe DataLoader for Langchain", // sidebar label
},
{
type: "doc",
id: "retrieval_chain", // document ID
label: "Safe Retriever for Langchain", // sidebar label
type: "category",
label: "LangChain",
items: [
{
type: "doc",
id: "rag", // document ID
label: "Safe DataLoader", // sidebar label
},
{
type: "doc",
id: "retrieval_chain", // document ID
label: "Safe Retriever", // sidebar label
},
],
},
{
type: "category",
label: "LlamaIndex", // sidebar label
items: [
{ type: "doc", label: "Safe DataReader", id: "llama_index_safe_reader" },
{
type: "doc",
label: "Safe DataReader",
id: "llama_index_safe_reader",
},
],
},
{
Expand All @@ -74,31 +84,31 @@ const sidebars: SidebarsConfig = {
label: "Reports", // sidebar label
},
{
type: "category",
label: "Samples", // sidebar label
items: [
type: "category",
label: "Samples", // sidebar label
items: [
{
type: "category",
label: "Safe Loader Samples",
items: [
{
type: "category",
label: "Safe Loader Samples",
items: [
{
type: "link",
label: "1. Google Drive-Qdrant Safe Loader Sample",
href: "https://github.com/daxa-ai/pebblo/tree/main/pebblo_safeloader/langchain/identity-rag",
},
{
type: "link",
label: "2. CSV Loader-Chroma Safe Loader Sample",
href: "https://github.com/daxa-ai/pebblo/tree/main/pebblo_safeloader/langchain/acme-corp-rag",
},
],
type: "link",
label: "1. Google Drive-Qdrant Safe Loader Sample",
href: "https://github.com/daxa-ai/pebblo/tree/main/pebblo_safeloader/langchain/identity-rag",
},
{
type: "doc",
label: "Safe Retriever Samples",
id: "safe_retriever_samples",
}
]
type: "link",
label: "2. CSV Loader-Chroma Safe Loader Sample",
href: "https://github.com/daxa-ai/pebblo/tree/main/pebblo_safeloader/langchain/acme-corp-rag",
},
],
},
{
type: "doc",
label: "Safe Retriever Samples",
id: "safe_retriever_samples",
},
],
},
{
type: "doc",
Expand Down