forked from juspay/neurolink
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
260 lines (252 loc) · 9.09 KB
/
mkdocs.yml
File metadata and controls
260 lines (252 loc) · 9.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
site_name: "NeuroLink"
site_description: "Enterprise AI Development Platform with built-in tools, universal provider support, and factory pattern architecture. Production-ready with TypeScript support."
site_url: "https://juspay.github.io/neurolink"
repo_url: "https://github.com/juspay/neurolink"
repo_name: "juspay/neurolink"
edit_uri: "edit/release/docs/"
# Build settings
docs_dir: "docs"
# Use '_site' instead of the default 'site' directory for the following reasons:
# 1. Alignment with GitHub Pages deployment workflow expectations
# 2. Avoids potential conflicts with other static site generators and tools
# 3. Provides clear distinction for MkDocs-specific output directory
# 4. Follows modern convention for build artifacts separation
site_dir: "_site"
# Exclude files that conflict with navigation
exclude_docs: |
README.md
# Theme configuration
theme:
name: material
features:
- announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.tabs.link
- content.tooltips
- header.autohide
- navigation.expand
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.instant.prefetch
- navigation.prune
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
- toc.integrate
palette:
- scheme: slate
primary: blue
accent: orange
toggle:
icon: material/brightness-4
name: Switch to light mode
- scheme: default
primary: blue
accent: orange
toggle:
icon: material/brightness-7
name: Switch to dark mode
font:
text: Roboto
code: Roboto Mono
# logo: assets/images/logo.png
# favicon: assets/images/favicon.ico
icon:
repo: fontawesome/brands/github
edit: material/pencil
view: material/eye
# Plugins
plugins:
- search:
lang: en
separator: '[\s\-,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
# Markdown extensions
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
title: Page contents
- tables
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
normalize_issue_symbols: true
repo_url_shorthand: true
user: juspay
repo: neurolink
- pymdownx.mark
- pymdownx.smartsymbols
# The 'auto_append' option for pymdownx.snippets was intentionally removed to simplify configuration.
# If your documentation previously relied on auto-appended snippets, you must now manually include those snippets in each Markdown file where needed.
# Verified: No documentation files depend on auto-appended snippets. All required content is included manually.
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
# Page navigation
nav:
- Home: index.md
- About:
- Vision & Roadmap: about/vision.md
- Getting Started:
- getting-started/index.md
- Quick Start: getting-started/quick-start.md
- Installation: getting-started/installation.md
- Provider Setup: getting-started/provider-setup.md
- Environment Variables: getting-started/environment-variables.md
- Providers:
- getting-started/providers/index.md
- Hugging Face: getting-started/providers/huggingface.md
- Mistral AI: getting-started/providers/mistral.md
- OpenAI Compatible: getting-started/providers/openai-compatible.md
- Google AI Studio: getting-started/providers/google-ai.md
- LiteLLM: getting-started/providers/litellm.md
- Azure OpenAI: getting-started/providers/azure-openai.md
- Google Vertex AI: getting-started/providers/google-vertex.md
- AWS Bedrock: getting-started/providers/aws-bedrock.md
- Feature Guides:
- features/index.md
- Human-in-the-Loop (HITL): features/hitl.md
- Guardrails Middleware: features/guardrails.md
- Redis Conversation Export: features/conversation-history.md
- Multimodal Chat Experiences: features/multimodal-chat.md
- Auto Evaluation Engine: features/auto-evaluation.md
- CLI Loop Sessions: features/cli-loop-sessions.md
- Regional Streaming Controls: features/regional-streaming.md
- Provider Orchestration Brain: features/provider-orchestration.md
- CLI Guide:
- cli/index.md
- Commands Reference: cli/commands.md
- Examples: cli/examples.md
- Advanced Usage: cli/advanced.md
- SDK Reference:
- sdk/index.md
- API Reference: sdk/api-reference.md
- Framework Integration: sdk/framework-integration.md
- Custom Tools: sdk/custom-tools.md
- Integrations & Platforms:
- LITELLM Integration: LITELLM-INTEGRATION.md
- SageMaker Integration: SAGEMAKER-INTEGRATION.md
- MCP Integration: advanced/mcp-integration.md
- Mem0 Conversational Memory: MEM0_INTEGRATION.md
- Enterprise Proxy Setup: ENTERPRISE-PROXY-SETUP.md
- Configuration Management: CONFIGURATION-MANAGEMENT.md
- Architecture & Advanced:
- advanced/index.md
- Advanced Orchestration: ADVANCED-ORCHESTRATION.md
- AI Orchestration Guide: AI-ORCHESTRATION-GUIDE.md
- Analytics & Evaluation: advanced/analytics.md
- Dynamic Models: advanced/dynamic-models.md
- Factory Pattern Architecture: FACTORY-PATTERN-ARCHITECTURE.md
- Conversation Memory Deep Dive: CONVERSATION-MEMORY.md
- Streaming: advanced/streaming.md
- Error Handling: ERROR-HANDLING.md
- Guides:
- guides/index.md
- Enterprise:
- Multi-Provider Failover: guides/enterprise/multi-provider-failover.md
- Load Balancing: guides/enterprise/load-balancing.md
- Cost Optimization: guides/enterprise/cost-optimization.md
- Compliance & Security: guides/enterprise/compliance.md
- Multi-Region Deployment: guides/enterprise/multi-region.md
- Monitoring & Observability: guides/enterprise/monitoring.md
- Audit Trails: guides/enterprise/audit-trails.md
- MCP:
- Server Catalog: guides/mcp/server-catalog.md
- Frameworks:
- Next.js: guides/frameworks/nextjs.md
- Express.js: guides/frameworks/express.md
- SvelteKit: guides/frameworks/sveltekit.md
- Examples:
- Use Cases: guides/examples/use-cases.md
- Code Patterns: guides/examples/code-patterns.md
- Tutorials:
- tutorials/index.md
- Chat Application: tutorials/chat-app.md
- RAG System: tutorials/rag.md
- Examples & Tutorials:
- examples/index.md
- Basic Usage: examples/basic-usage.md
- Advanced Examples: examples/advanced.md
- Use Cases: examples/use-cases.md
- Business Applications: examples/business.md
- Visual Demos:
- demos/index.md
- Screenshots: demos/screenshots.md
- Videos: demos/videos.md
- Interactive Demo: demos/interactive.md
- Operations & Reference:
- reference/index.md
- Configuration Reference: reference/configuration.md
- Provider Comparison: reference/provider-comparison.md
- Troubleshooting: reference/troubleshooting.md
- FAQ: reference/faq.md
- Documentation Matrix: tracking/FEATURE-DOC-MATRIX.md
- Migration Guide: guides/migration-guide.md
- Development:
- development/index.md
- Contributing: development/contributing.md
- Testing: development/testing.md
- Architecture Notes: development/architecture.md
- Factory Pattern Migration: development/factory-migration.md
- Documentation Versioning: development/versioning.md
- Automated Link Checking: development/link-checking.md
- Reference:
- reference/index.md
- Troubleshooting: reference/troubleshooting.md
- Configuration: reference/configuration.md
- Provider Comparison: reference/provider-comparison.md
- FAQ: reference/faq.md
# Social links and extras
extra:
version:
provider: mike
default: latest
social:
- icon: fontawesome/brands/github
link: https://github.com/juspay/neurolink
name: GitHub Repository
- icon: fontawesome/brands/npm
link: https://www.npmjs.com/package/@juspay/neurolink
name: NPM Package
- icon: fontawesome/brands/twitter
link: https://twitter.com/juspay
name: Follow on Twitter
# analytics:
# provider: google
# property: G-XXXXXXXXXX
generator: false
# Copyright after GitHub Pages source change
copyright: |
© 2025 <a href="https://juspay.io" target="_blank" rel="noopener">Juspay Technologies</a>