Skip to content
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

refactor: remove numbers from file/folder names #10

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
81 changes: 67 additions & 14 deletions pages/docs/_meta.tsx
Original file line number Diff line number Diff line change
@@ -1,20 +1,73 @@
import { Blocks, Lightbulb, CircleHelp, DraftingCompass, Landmark, Puzzle, Rocket, Unplug, MessageCircleQuestion, HeartHandshake } from "lucide-react";
import {
Blocks,
Lightbulb,
CircleHelp,
DraftingCompass,
Landmark,
Puzzle,
Rocket,
Unplug,
MessageCircleQuestion,
HeartHandshake,
} from "lucide-react";

const iconStyle = {
width: '1rem',
display: 'inline'
}
width: "1rem",
display: "inline",
};

const meta = {
"index": "Overview",
"0_quickstart": {title: <><Rocket style={iconStyle} /> &nbsp; Quickstart</>},
"1_why_rig": {title: <><Lightbulb style={iconStyle} /> &nbsp; Why Rig</>},
//"2_faq": {title: <><MessageCircleQuestion style={iconStyle} /> &nbsp; FAQ</>},
"3_architecture": {title: <><Landmark style={iconStyle} /> &nbsp; Architecture</>},
"4_concepts": {title: <><Puzzle style={iconStyle} /> &nbsp; Concepts</>},
"5_integrations": {title: <><Unplug style={iconStyle} /> &nbsp; Integrations</>},
"6_extensions": {title: <><Blocks style={iconStyle} /> &nbsp; Extensions</>},
"7_how-to-contribute": {title: <><HeartHandshake style={iconStyle} /> &nbsp; Contribute to Rig</>}
}
index: "Overview",
quickstart: {
title: (
<>
<Rocket style={iconStyle} /> &nbsp; Quickstart
</>
),
},
why_rig: {
title: (
<>
<Lightbulb style={iconStyle} /> &nbsp; Why Rig
</>
),
},
//"faq": {title: <><MessageCircleQuestion style={iconStyle} /> &nbsp; FAQ</>},
architecture: {
title: (
<>
<Landmark style={iconStyle} /> &nbsp; Architecture
</>
),
},
concepts: {
title: (
<>
<Puzzle style={iconStyle} /> &nbsp; Concepts
</>
),
},
integrations: {
title: (
<>
<Unplug style={iconStyle} /> &nbsp; Integrations
</>
),
},
extensions: {
title: (
<>
<Blocks style={iconStyle} /> &nbsp; Extensions
</>
),
},
how_to_contribute: {
title: (
<>
<HeartHandshake style={iconStyle} /> &nbsp; Contribute to Rig
</>
),
},
};

export default meta;
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 0 additions & 3 deletions pages/examples/3_advanced/_meta.tsx

This file was deleted.

12 changes: 6 additions & 6 deletions pages/examples/_meta.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export default {
"index": "Get Started",
"0_model_providers": "Model Providers",
"1_rag": "RAG",
"2_basics": "Basic",
"3_advanced": "Advanced"
}
index: "Get Started",
model_providers: "Model Providers",
rag: "RAG",
basics: "Basic",
advanced: "Advanced",
};
3 changes: 3 additions & 0 deletions pages/examples/advanced/_meta.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default {
concurrent_processing: "Concurrent Agent Processing",
};
File renamed without changes.
3 changes: 0 additions & 3 deletions pages/guides/1_rag/_meta.tsx

This file was deleted.

4 changes: 0 additions & 4 deletions pages/guides/2_advanced/_meta.tsx

This file was deleted.

12 changes: 6 additions & 6 deletions pages/guides/_meta.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
const meta = {
"index": "Overview",
"0_text_extraction_classification": "Text Extraction and Classification",
"1_rag": "Retrieval Augmented Generation (RAG)",
"2_advanced": "Advanced Workflows",
"3_deploy": "Deploy Rig"
}
index: "Overview",
text_extraction_classification: "Text Extraction and Classification",
rag: "Retrieval Augmented Generation (RAG)",
advanced: "Advanced Workflows",
deploy: "Deploy Rig",
};

export default meta;
4 changes: 4 additions & 0 deletions pages/guides/advanced/_meta.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export default {
discord_bot: "Discord Bot",
flight_assistant: "Flight Search Agent",
};
File renamed without changes.
3 changes: 3 additions & 0 deletions pages/guides/rag/_meta.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default {
rag_system: "Simple RAG",
};
File renamed without changes.
Loading