-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathmkdocs.yml
More file actions
190 lines (182 loc) · 7.42 KB
/
mkdocs.yml
File metadata and controls
190 lines (182 loc) · 7.42 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
site_name: Hayhooks
site_description: Deploy and serve Haystack Pipelines and Agents as REST APIs
site_author: deepset
site_url: https://deepset-ai.github.io/hayhooks
repo_name: deepset-ai/hayhooks
repo_url: https://github.com/deepset-ai/hayhooks
nav:
- Home: index.md
- Getting Started:
- Quick Start: getting-started/quick-start.md
- Quick Start with Docker Compose: getting-started/quick-start-docker.md
- Installation: getting-started/installation.md
- Configuration: getting-started/configuration.md
- Core Concepts:
- Pipeline Deployment: concepts/pipeline-deployment.md
- PipelineWrapper: concepts/pipeline-wrapper.md
- YAML Pipeline Deployment: concepts/yaml-pipeline-deployment.md
- Agent Deployment: concepts/agent-deployment.md
- Features:
- OpenAI Compatibility: features/openai-compatibility.md
- MCP Support: features/mcp-support.md
- Chainlit Integration: features/chainlit-integration.md
- Open WebUI Integration: features/openwebui-integration.md
- File Upload Support: features/file-upload-support.md
- File Response Support: features/file-response-support.md
- CLI Commands: features/cli-commands.md
- Advanced Usage:
- Running Pipelines: advanced/running-pipelines.md
- Advanced Configuration: advanced/advanced-configuration.md
- Code Sharing: advanced/code-sharing.md
- Guides:
- Development Best Practices: guides/development-best-practices.md
- Production Best Practices: guides/production-best-practices.md
- Deployment:
- Deployment Guidelines: deployment/deployment_guidelines.md
- Examples:
- Examples Overview: examples/overview.md
- Chat with Website: examples/chat-with-website.md
- RAG System: examples/rag-system.md
- Async Operations: examples/async-operations.md
- Open WebUI Events: examples/openwebui-events.md
- Reference:
- API Reference: reference/api-reference.md
- Environment Variables: reference/environment-variables.md
- Tracing: reference/tracing.md
- Logging: reference/logging.md
- About:
- License: about/license.md
theme:
logo: assets/haystack-icon.png
name: material
language: en
features:
- navigation.tabs
- navigation.sections
- navigation.instant
- navigation.expand
- navigation.top
- search.suggest
- search.highlight
- content.code.copy
- content.code.annotate
- toc.integrate
font:
text: Inter
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
accent: custom
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
accent: custom
toggle:
icon: material/weather-sunny
name: Switch to light mode
plugins:
- search
- tags
- llmstxt:
markdown_description: >
Hayhooks turns Haystack Pipelines and Agents into production-ready REST
APIs, bundling deployment, observability, lifecycle tooling, and native
Model Context Protocol (MCP) endpoints for MCP-aware clients such as
Cursor or Claude Desktop.
full_output: llms-full.txt
sections:
Overview:
- index.md: Project overview and key capabilities.
Getting Started:
- getting-started/quick-start.md: Launch Hayhooks locally with the default settings.
- getting-started/quick-start-docker.md: Run Hayhooks with Docker Compose for a managed setup.
- getting-started/installation.md: Install Hayhooks and its dependencies.
- getting-started/configuration.md: Configure Hayhooks for your environment.
Core Concepts:
- concepts/pipeline-wrapper.md: Understand the PipelineWrapper abstraction.
- concepts/pipeline-deployment.md: Learn how to deploy Haystack Pipelines with Hayhooks.
- concepts/agent-deployment.md: Learn how to deploy Haystack Agents with Hayhooks.
- concepts/yaml-pipeline-deployment.md: Define and deploy Haystack Pipelines from YAML.
Features:
- features/openai-compatibility.md: Use Hayhooks with OpenAI-compatible clients.
- features/mcp-support.md: Using Hayhooks as an MCP Server for Haystack Pipelines and Agents.
- features/chainlit-integration.md: Embed a Chainlit chat UI directly in Hayhooks.
- features/openwebui-integration.md: Connect Hayhooks to Open WebUI.
- features/file-upload-support.md: Handle file uploads inside pipeline runs.
- features/file-response-support.md: Return binary files (images, PDFs, audio) from pipeline endpoints.
- features/cli-commands.md: Discover the Hayhooks command-line tooling.
Advanced Usage:
- advanced/running-pipelines.md: Execute Haystack Pipelines and manage runs programmatically.
- advanced/advanced-configuration.md: Fine-tune advanced configuration settings.
- advanced/code-sharing.md: Share Python code securely across deployments.
Guides:
- guides/development-best-practices.md: Development workflow tips for Hayhooks pipelines.
- guides/production-best-practices.md: Production hardening recommendations for Hayhooks.
Deployment:
- deployment/deployment_guidelines.md: Follow best practices for production deployments.
Examples:
- examples/overview.md: Explore the examples shipped with Hayhooks.
- examples/chat-with-website.md: Build a Haystack website-aware chat assistant.
- examples/rag-system.md: Assemble a Haystack RAG system with Hayhooks.
- examples/async-operations.md: Run asynchronous operations with Haystack Pipelines and Agents.
- examples/openwebui-events.md: Handle Open WebUI event integrations.
Reference:
- reference/api-reference.md: REST API reference for Haystack Pipelines and Agents endpoints.
- reference/environment-variables.md: Environment variables and their defaults.
- reference/tracing.md: OpenTelemetry tracing setup, local backends, and behavior.
- reference/logging.md: Logging configuration and observability guidance.
About:
- about/license.md: Project licensing details.
markdown_extensions:
- admonition
- attr_list
- codehilite:
guess_lang: false
- def_list
- footnotes
- meta
- md_in_html
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
extra:
version:
provider: mike
social:
- icon: fontawesome/brands/github
link: https://github.com/deepset-ai/hayhooks
- icon: fontawesome/brands/docker
link: https://hub.docker.com/r/deepset/hayhooks
- icon: fontawesome/brands/twitter
link: https://twitter.com/deepset_ai
extra_css:
- stylesheets/extra.css
extra_javascript: []