forked from Pipelex/pipelex
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
176 lines (168 loc) · 8.19 KB
/
mkdocs.yml
File metadata and controls
176 lines (168 loc) · 8.19 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
site_name: Pipelex Docs
site_url: https://docs.pipelex.com/
site_description: "Official documentation for Pipelex, a framework and language for building deterministic, repeatable AI workflows and knowledge pipelines."
docs_dir: docs
repo_url: "https://github.com/Pipelex/pipelex"
repo_name: "Pipelex on GitHub"
watch: [README.md, CONTRIBUTING.md, CHANGELOG.md, MANIFESTO.md, LICENSE]
theme:
name: material
custom_dir: docs/overrides
favicon: images/pipelex-favicon-32.png
logo: https://pipelex-web.s3.amazonaws.com/logo/Pipelex-logo-wot-mono-560x176.png
features:
- navigation.footer
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.top
palette:
- scheme: default # light
primary: teal
accent: deep purple
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate # dark
primary: teal
accent: purple
toggle:
icon: material/weather-sunny
name: Switch to light mode
copyright: "© 2025 Evotis S.A.S. <br/>Pipelex is a trademark of Evotis S.A.S."
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/Pipelex/pipelex
name: Pipelex on GitHub
- icon: fontawesome/brands/python
link: https://pypi.org/project/pipelex/
name: pipelex on PyPI
- icon: fontawesome/brands/twitter
link: https://x.com/PipelexAI
name: Pipelex on X
- icon: fontawesome/brands/discord
link: https://go.pipelex.com/discord
name: Pipelex on Discord
generator: false
plugins:
- search
- meta-manager
- glightbox:
touchNavigation: true
loop: false
effect: zoom
slide_effect: slide
width: 100%
height: auto
zoomable: true
draggable: true
auto_caption: false
caption_position: bottom
markdown_extensions:
- meta
- attr_list
- md_in_html
- pymdownx.blocks.caption
- pymdownx.highlight
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.snippets:
base_path: .
check_paths: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
nav:
- Home:
- Welcome: index.md
- Installation: pages/installation/index.md
- Quick-start: pages/quick-start/index.md
- Understand Pipelex:
- The Knowledge Pipeline Manifesto: manifesto.md
- The Pipelex Paradigm: pages/pipelex-paradigm-for-repeatable-ai-workflows/index.md
- Cookbook Examples:
- Overview: pages/cookbook-examples/index.md
- Hello World: pages/cookbook-examples/hello-world.md
- Document Processing:
- Simple OCR: pages/cookbook-examples/simple-ocr.md
- Generic Document Extraction: pages/cookbook-examples/extract-generic.md
- Invoice Extractor: pages/cookbook-examples/invoice-extractor.md
- Proof of Purchase Extraction: pages/cookbook-examples/extract-proof-of-purchase.md
- Graphical Extraction:
- Gantt Chart Extraction: pages/cookbook-examples/extract-gantt.md
- Table Extraction from Image: pages/cookbook-examples/extract-table.md
- DPE Extraction: pages/cookbook-examples/extract-dpe.md
- Text Generation:
- Screenplay Generator (wip): pages/cookbook-examples/write-screenplay.md
- Tweet Optimizer (wip): pages/cookbook-examples/write-tweet.md
- Build Reliable AI Workflows:
- Kick off a Pipeline Project: pages/build-reliable-ai-workflows-with-pipelex/kick-off-a-knowledge-pipeline-project.md
- Define Your Concepts: pages/build-reliable-ai-workflows-with-pipelex/define_your_concepts.md
- Design and Run Pipelines: pages/build-reliable-ai-workflows-with-pipelex/design_and_run_pipelines.md
- Pipe Operators:
- Overview: pages/build-reliable-ai-workflows-with-pipelex/pipe-operators/index.md
- PipeLLM: pages/build-reliable-ai-workflows-with-pipelex/pipe-operators/PipeLLM.md
- PipeOcr: pages/build-reliable-ai-workflows-with-pipelex/pipe-operators/PipeOcr.md
- PipeImgGen: pages/build-reliable-ai-workflows-with-pipelex/pipe-operators/PipeImgGen.md
- PipeJinja2: pages/build-reliable-ai-workflows-with-pipelex/pipe-operators/PipeJinja2.md
- PipeFunc: pages/build-reliable-ai-workflows-with-pipelex/pipe-operators/PipeFunc.md
- Pipe Controllers:
- Overview: pages/build-reliable-ai-workflows-with-pipelex/pipe-controllers/index.md
- PipeSequence: pages/build-reliable-ai-workflows-with-pipelex/pipe-controllers/PipeSequence.md
- PipeParallel: pages/build-reliable-ai-workflows-with-pipelex/pipe-controllers/PipeParallel.md
- PipeBatch: pages/build-reliable-ai-workflows-with-pipelex/pipe-controllers/PipeBatch.md
- PipeCondition: pages/build-reliable-ai-workflows-with-pipelex/pipe-controllers/PipeCondition.md
- Optimize Cost & Quality: pages/build-reliable-ai-workflows-with-pipelex/configure-ai-llm-to-optimize-workflows.md
- LLM Structured Generation: pages/build-reliable-ai-workflows-with-pipelex/llm-structured-generation-config.md
- LLM Prompting Style: pages/build-reliable-ai-workflows-with-pipelex/adapt-to-llm-prompting-style-openai-anthropic-mistral.md
- LLM Providers & Models: pages/build-reliable-ai-workflows-with-pipelex/ai-plugins-for-multi-llm-workflows.md
- Configuration:
- Overview: pages/configuration/index.md
- Pipeline Validation Configuration:
- Dry Run: pages/configuration/config-pipeline-validation/dry-run-config.md
- Static Validation: pages/configuration/config-pipeline-validation/static-validation-config.md
- Practical Configuration:
- Logging: pages/configuration/config-practical/logging-config.md
- Pipe Run: pages/configuration/config-practical/pipe-run-config.md
- Reporting: pages/configuration/config-practical/reporting-config.md
- Tracker: pages/configuration/config-practical/tracker-config.md
- Technical Configuration:
- AWS: pages/configuration/config-technical/aws-config.md
- Cogt: pages/configuration/config-technical/cogt-config.md
- Library: pages/configuration/config-technical/library-config.md
- Feature: pages/configuration/config-advanced/feature-config.md
- Development:
- Changelog: changelog.md
- Tools:
- CLI: pages/tools/cli.md
- Logging: pages/tools/logging.md
- Advanced Customizations:
- Overview: pages/advanced-customization/index.md
- Architecture Overview: pages/advanced-customization/on_boarding.md
- Client & API Layer: pages/advanced-customization/Client_API_Layer.md
- Core Orchestration Engine: pages/advanced-customization/Core_Orchestration_Engine.md
- AI Integration Layer: pages/advanced-customization/AI_Integration_Layer.md
- Pipe Operators: pages/advanced-customization/Pipe_Operators.md
- Data & Working Memory: pages/advanced-customization/Data_Working_Memory.md
- Configuration & Extensibility: pages/advanced-customization/Configuration_Extensibility_Management.md
- Observability & Reporting: pages/advanced-customization/Observability_Reporting.md
- Secrets Provider: pages/advanced-customization/secrets-provider-injection.md
- Reporting Delegate: pages/advanced-customization/reporting-delegate-injection.md
- Pipeline Tracker: pages/advanced-customization/pipeline-tracker-injection.md
- Activity Manager: pages/advanced-customization/activity-manager-injection.md
- Template Provider: pages/advanced-customization/template-provider-injection.md
- Content Generator: pages/advanced-customization/content-generator-injection.md
- LLM Model Provider: pages/advanced-customization/llm-model-provider-injection.md
- Pipe Router: pages/advanced-customization/pipe-router-injection.md
- Plugin Manager: pages/advanced-customization/plugin-manager-injection.md
- Inference Manager: pages/advanced-customization/inference-manager-injection.md
- License: license.md
- Contributing: contributing.md
- Code of Conduct: CODE_OF_CONDUCT.md
extra_css:
- stylesheets/mermaid.css
- stylesheets/general.css