Skip to content

Commit

Permalink
add langchain tab in pebblo docs (#497)
Browse files Browse the repository at this point in the history
  • Loading branch information
rutujaac authored Aug 27, 2024
1 parent c888788 commit 2f7ac78
Showing 1 changed file with 41 additions and 31 deletions.
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

0 comments on commit 2f7ac78

Please sign in to comment.