-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathindex.toml
More file actions
370 lines (299 loc) Β· 10.7 KB
/
index.toml
File metadata and controls
370 lines (299 loc) Β· 10.7 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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
[config]
layout = "cookbook"
toc = true
colab = "https://colab.research.google.com/github/deepset-ai/haystack-cookbook/blob/main/notebooks/"
[[cookbook]]
title = "PDF-Based Question Answering with Amazon Bedrock and Haystack"
notebook = "amazon_bedrock_for_documentation_qa.ipynb"
topics = ["RAG"]
[[cookbook]]
title = "Question Answering with Amazon Sagemaker, Chroma and Haystack"
notebook = "amazon_sagemaker_and_chroma_for_qa.ipynb"
topics = ["RAG"]
[[cookbook]]
title = "Crawl Website Content for Question Answering with Apify"
notebook = "apify_haystack_rag.ipynb"
topics = ["RAG", "Web-QA"]
[[cookbook]]
title = "AstraDB π€ Haystack Integration"
notebook = "astradb_haystack_integration.ipynb"
topics = ["RAG"]
[[cookbook]]
title = "Improving Retrieval with Auto-Merging and Hierarchical Document Retrieval"
notebook = "auto_merging_retriever.ipynb"
topics = ["Advanced Retrieval", "RAG"]
[[cookbook]]
title = "π§© Quizzes and Adventures π° with Character Codex and llamafile"
notebook = "charactercodex_llamafile.ipynb"
topics = ["Model Serving", "Chat"]
[[cookbook]]
title = "Chat With Your SQL Database"
notebook = "chat_with_SQL_3_ways.ipynb"
topics = ["Chat", "SQL", "Agents"]
[[cookbook]]
title = "Chroma Indexing and RAG Examples"
notebook = "chroma-indexing-and-rag-examples.ipynb"
topics = ["RAG", "Vector Databases"]
[[cookbook]]
title = "Cohere v3 for Multilingual QA"
notebook = "cohere-v3-for-multilingual-qa.ipynb"
topics = ["Multilingual RAG"]
[[cookbook]]
title = "Extract Metadata Filters from a Query"
notebook = "extracting_metadata_filters_from_a_user_query.ipynb"
topics = ["Advanced Retrieval", "Metadata"]
[[cookbook]]
title = "Function Calling with OpenAIChatGenerator"
notebook = "function_calling_with_OpenAIChatGenerator.ipynb"
topics = ["Function Calling", "Chat", "Agents"]
outdated = true
[[cookbook]]
title = "Build with Gemma and Haystack"
notebook = "gemma_chat_rag.ipynb"
topics = ["RAG"]
[[cookbook]]
title = "Build with Llama Stack and Haystack Agent"
notebook = "llama_stack_with_agent.ipynb"
topics = ["Function Calling", "Agents"]
[[cookbook]]
title = "Hacker News Summaries with Custom Components"
notebook = "hackernews-custom-component-rag.ipynb"
topics = ["RAG", "Customization"]
[[cookbook]]
title = "Hybrid Retrieval with BM42"
notebook = "hybrid_retrieval_bm42.ipynb"
topics = ["Advanced Retrieval"]
[[cookbook]]
title = "Improve Retrieval by Embedding Meaningful Metadata"
notebook = "improve-retrieval-by-embedding-metadata.ipynb"
topics = ["Advanced Retrieval", "Metadata"]
[[cookbook]]
title = "π¦ββ¬ Information Extraction with Raven"
notebook = "information_extraction_raven.ipynb"
topics = ["Function Calling"]
[[cookbook]]
title = "π¦ Information Extraction with Gorilla"
notebook = "information-extraction-gorilla.ipynb"
topics = ["Function Calling"]
[[cookbook]]
title = "Legal Document Analysis with jina-embeddings-v2-base-en"
notebook = "jina-embeddings-v2-legal-analysis-rag.ipynb"
topics = ["Summarization", "Advanced Retrieval"]
[[cookbook]]
title = "RAG with Llama 3.1"
notebook = "llama3_rag.ipynb"
topics = ["RAG"]
[[cookbook]]
title = "Web QA with Mixtral-8x7B-Instruct-v0.1"
notebook = "mixtral-8x7b-for-web-qa.ipynb"
topics = ["Web-QA"]
[[cookbook]]
title = "Streaming Model Explorer"
notebook = "model_explorer_streaming.ipynb"
topics = ["Discovery"]
[[cookbook]]
title = "Multilingual RAG on a Podcast"
notebook = "multilingual_rag_podcast.ipynb"
topics = ["Audio", "Multilingual RAG"]
[[cookbook]]
title = "Invoking APIs with OpenAPITool"
notebook = "openapitool.ipynb"
topics = ["Function Calling"]
experimental = true
outdated = true
discuss = "https://github.com/deepset-ai/haystack-experimental/discussions/79"
[[cookbook]]
title = "RAG Evaluation with Prometheus 2"
notebook = "prometheus2_evaluation.ipynb"
topics = ["Evaluation"]
[[cookbook]]
title = "Advanced Prompt Customization for Anthropic"
notebook = "prompt_customization_for_Anthropic.ipynb"
topics = ["Customization", "Prompting"]
[[cookbook]]
title = "Prompt Optimization with DSPy"
notebook = "prompt_optimization_with_dspy.ipynb"
topics = ["Customization", "Prompting"]
[[cookbook]]
title = "Advanced RAG: Query Expansion"
notebook = "query-expansion.ipynb"
experimental = true
discuss = "https://github.com/deepset-ai/haystack-experimental/discussions/346"
topics = ["Advanced Retrieval", "RAG"]
[[cookbook]]
title = "RAG Pipeline Evaluation Using DeepEval"
notebook = "rag_eval_deep_eval.ipynb"
topics = ["Evaluation"]
[[cookbook]]
title = "RAG Pipeline Evaluation Using RAGAS"
notebook = "rag_eval_ragas.ipynb"
topics = ["Evaluation"]
[[cookbook]]
title = "RAG Pipeline Using FastEmbed for Embeddings Generation"
notebook = "rag_fastembed.ipynb"
topics = ["RAG", "Advanced Retrieval"]
[[cookbook]]
title = "Haystack RAG Pipeline with Self-Deployed AI models using NVIDIA NIMs"
notebook = "rag-with-nims.ipynb"
topics = ["RAG", "Model Serving"]
[[cookbook]]
title = "Sparse Embedding Retrieval with Qdrant and FastEmbed"
notebook = "sparse_embedding_retrieval.ipynb"
topics = ["RAG", "Advanced Retrieval"]
[[cookbook]]
title = "Getting a Daily Digest From Tech Websites"
notebook = "techcrunch_news_digest_titanml_takeoff.ipynb"
topics = ["Model Serving", "RAG"]
[[cookbook]]
title = "Using Hypothetical Document Embeddings (HyDE) to Improve Retrieval"
notebook = "using_hyde_for_improved_retrieval.ipynb"
topics = ["Advanced Retrieval", "RAG"]
[[cookbook]]
title = "Speaker Diarization with AssemblyAI"
notebook = "using_speaker_diarization_with_assemblyai.ipynb"
topics = ["Audio"]
[[cookbook]]
title = "Function Calling and Multimodal QA with Gemini"
notebook = "vertexai-gemini-examples.ipynb"
topics = ["Function Calling", "Multimodal"]
[[cookbook]]
title = "Use the β‘ vLLM inference engine with Haystack"
notebook = "vllm_inference_engine.ipynb"
topics = ["Model Serving"]
[[cookbook]]
title = "πͺ RAG pipelines with Haystack + Zephyr 7B Beta"
notebook = "zephyr-7b-beta-for-rag.ipynb"
topics = ["RAG"]
[[cookbook]]
title = "Advanced RAG: Query Decomposition and Reasoning"
notebook = "query_decomposition.ipynb"
topics = ["Advanced Retrieval", "RAG", "Agents"]
[[cookbook]]
title = "Analyze Your Instagram Commentsβ Vibe with Apify and Haystack"
notebook = "apify_haystack_instagram_comments_analysis.ipynb"
topics = ["Prompting", "Data Scraping"]
[[cookbook]]
title = "Define & Run Tools "
notebook = "tools_support.ipynb"
topics = ["Function Calling", "Chat", "Agents"]
[[cookbook]]
title = "Agentic RAG with Llama 3.2 3B"
notebook = "llama32_agentic_rag.ipynb"
topics = ["RAG", "Agents", "Web-QA"]
[[cookbook]]
title = "Advanced RAG: Automated Structured Metadata Enrichment"
notebook = "metadata_enrichment.ipynb"
topics = ["Advanced Retrieval", "RAG", "Metadata"]
[[cookbook]]
title = "Newsletter Sending Agent with Tools"
notebook = "newsletter-agent.ipynb"
topics = ["Function Calling", "Chat", "Agents"]
[[cookbook]]
title = "Evaluating AI with Haystack"
notebook = "evaluating_ai_with_haystack.ipynb"
experimental = true
topics = ["Evaluation"]
discuss = "https://github.com/deepset-ai/haystack-experimental/discussions/74"
[[cookbook]]
title = "Multimodal Agent with fastRAG and Haystack"
notebook = "multimodal_agent_with_fastrag_haystack.ipynb"
topics = ["Multimodal", "Agents"]
[[cookbook]]
title = "Web-Enhanced Self-Reflecting Agent"
notebook = "web_enhanced_self_reflecting_agent.ipynb"
topics = ["Agents"]
[[cookbook]]
title = "Create a Swarm of Agents"
notebook = "swarm.ipynb"
topics = ["Function Calling", "Chat", "Agents"]
[[cookbook]]
title = "Running Haystack Pipelines in Asynchronous Environments"
notebook = "async_pipeline.ipynb"
topics = ["Async"]
[[cookbook]]
title = "RAG: Web Search and Analysis with Apify and Haystack"
notebook = "apify_haystack_rag_web_browser.ipynb"
topics = ["Web-QA", "Data Scraping", "RAG"]
[[cookbook]]
title = "Build a GitHub Issue Resolver Agent"
notebook = "github_issue_resolver_agent.ipynb"
topics = ["Function Calling", "Agents"]
[[cookbook]]
title = "Extracting Metadata with an LLM"
notebook = "metadata_extraction_with_llm_metadata_extractor.ipynb"
topics = ["Metadata"]
[[cookbook]]
title = "Building an Interactive Feedback Review Agent with Azure AI Search and Haystack"
notebook = "feedback-analysis-agent-with-AzureAISearch.ipynb"
topics = ["AzureAISearch", "Agents", "RAG"]
[[cookbook]]
title = "Hybrid RAG Pipeline with Breakpoints"
notebook = "hybrid_rag_pipeline_with_breakpoints.ipynb"
topics = ["Advanced Retrieval", "RAG"]
[[cookbook]]
title = "Breakpoint on Agent in a Pipeline"
notebook = "agent-breakpoints.ipynb"
topics = ["Agents"]
[[cookbook]]
title = "Simple Keyword Extraction using OpenAIChatGenerator"
notebook = "keyword-extraction.ipynb"
topics = ["Keyword Extraction"]
[[cookbook]]
title = "DevOps Support Agent with Human in the Loop"
notebook = "agent_with_human_in_the_loop.ipynb"
topics = ["Function Calling", "Agents"]
[[cookbook]]
title = "Introduction to Multimodal Text Generation"
notebook = "multimodal_intro.ipynb"
new = true
topics = ["Multimodal"]
[[cookbook]]
title = "Build a GitHub PR Creator Agent"
notebook = "github_pr_creator_agent.ipynb"
topics = ["Function Calling", "Agents"]
[[cookbook]]
title = "Trace and Evaluate RAG with Arize Phoenix"
notebook = "arize_phoenix_evaluate_haystack_rag.ipynb"
topics = ["Observability", "Evaluation", "RAG"]
[[cookbook]]
title = "AI Guardrails: Content Moderation and Safety with Open Language Models"
notebook = "safety_moderation_open_lms.ipynb"
topics = ["Guardrails", "Evaluation", "RAG"]
new = true
[[cookbook]]
title = "Build Browser Agents with Gemini + Playwright MCP"
notebook = "browser_agents.ipynb"
topics = ["Agents", "MCP"]
new = true
[[cookbook]]
title = "Calculating a Hallucination Score with the OpenAIChatGenerator"
notebook = "hallucination_score_calculator.ipynb"
topics = ["RAG"]
new = true
[[cookbook]]
title = "Agent-Powered Retrieval with Haystack"
notebook = "agent_powered_retrieval.ipynb"
topics = ["Agents", "Advanced Retrieval", "Metadata"]
new = true
[[cookbook]]
title = "Improving PostgreSQL Keyword Search to Avoid Empty Results"
notebook = "improving_pgvector_keyword_search.ipynb"
topics = ["Advanced Retrieval", "Customization"]
new = true
[[cookbook]]
title = "Domain-Aware UI/UX Reviewer Agent: Custom Tools with Retry and Fallback"
notebook = "ui_ux_reviewer_agent.ipynb"
topics = ["Agents", "Customization"]
new = true
[[cookbook]]
title = "Using Mem0 Memory Store with Haystack Agents"
notebook = "memory_store_mem0.ipynb"
topics = ["Agents", "Chat", "Memory"]
experimental = true
new = true
discuss = "https://github.com/deepset-ai/haystack-experimental/discussions/436"
[[cookbook]]
title = "LinkedIn, Company Intelligence & Lead Enrichment with Haystack, MongoDB Atlas, and Bright Data"
notebook = "ai_sales_research_assistant.ipynb"
new = true
topics = ["RAG", "Web-QA"]