-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmkdocs.yml
More file actions
384 lines (367 loc) · 17.8 KB
/
Copy pathmkdocs.yml
File metadata and controls
384 lines (367 loc) · 17.8 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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
site_name: DSPy
site_description: The framework for programming—rather than prompting—language models.
site_url: https://dspy.ai/
repo_url: https://github.com/stanfordnlp/dspy
repo_name: stanfordnlp/dspy
edit_uri: blob/main/docs/docs/
docs_dir: "docs/"
nav:
- Overview: index.md
- Getting Started:
- Program, don't prompt: getting-started/program-dont-prompt.md
- Setting up DSPy: getting-started/installation.md
- Your first program: getting-started/first-program.md
- Expanding signatures: getting-started/expanding-signatures.md
- Class-based signatures: getting-started/class-based-signatures.md
- Changing modules: getting-started/changing-modules.md
- Tools with ReAct: getting-started/react-and-tools.md
- Composing modules: getting-started/composing-modules.md
- Metrics: getting-started/metrics.md
- GEPA optimization: getting-started/gepa-optimization.md
- Saving and loading: getting-started/saving-and-loading.md
- Where to go next: getting-started/where-to-go-next.md
- Diving Deeper:
- Signatures in depth: diving-deeper/signatures-in-depth.md
- "Modules: composing your own": diving-deeper/modules.md
- Built-in module variants: diving-deeper/built-in-module-variants.md
- "RLM: exploring large contexts with code": diving-deeper/rlm.md
- "Tools, ReAct, and MCP": diving-deeper/tools-react-and-mcp.md
- Metrics and evaluation: diving-deeper/metrics-and-evaluation.md
- "Optimizers: choosing one": diving-deeper/choosing-an-optimizer.md
- GEPA in depth: diving-deeper/gepa-in-depth.md
- BootstrapFewShot family: diving-deeper/bootstrap-fewshot-family.md
- "Adapters: how signatures become prompts": diving-deeper/adapters.md
- "Settings and context()": diving-deeper/settings-and-context.md
- Saving and loading: diving-deeper/saving-and-loading.md
- Tutorials:
- Tutorials Overview: tutorials/index.md
- Build AI Programs with DSPy:
- Overview: tutorials/build_ai_program/index.md
- Managing Conversation History: tutorials/conversation_history/index.md
- Building AI Agents with DSPy: tutorials/customer_service_agent/index.ipynb
- Building AI Applications by Customizing DSPy Modules: tutorials/custom_module/index.ipynb
- Retrieval-Augmented Generation (RAG): tutorials/rag/index.ipynb
- Building RAG as Agent: tutorials/agents/index.ipynb
- Entity Extraction: tutorials/entity_extraction/index.ipynb
- Classification: tutorials/classification/index.md
- Multi-Hop RAG: tutorials/multihop_search/index.ipynb
- Privacy-Conscious Delegation: tutorials/papillon/index.md
- Program Of Thought: tutorials/program_of_thought/index.ipynb
- Image Generation Prompt iteration: tutorials/image_generation_prompting/index.ipynb
- Audio: tutorials/audio/index.ipynb
- Optimize AI Programs with DSPy:
- Overview: tutorials/optimize_ai_program/index.md
- Math Reasoning: tutorials/math/index.ipynb
- Classification Finetuning: tutorials/classification_finetuning/index.ipynb
- Advanced Tool Use: tutorials/tool_use/index.ipynb
- Finetuning Agents: tutorials/games/index.ipynb
- Reflective Prompt Evolution with dspy.GEPA:
- Overview: tutorials/gepa_ai_program/index.md
- GEPA for AIME (Math): tutorials/gepa_aime/index.ipynb
- GEPA for Structured Information Extraction for Enterprise Tasks: tutorials/gepa_facilitysupportanalyzer/index.ipynb
- GEPA for Privacy-Conscious Delegation: tutorials/gepa_papillon/index.ipynb
- GEPA for Code Backdoor Classification (AI control): tutorials/gepa_trusted_monitor/index.ipynb
- Experimental RL Optimization for DSPy:
- Overview: tutorials/rl_ai_program/index.md
- RL for Privacy-Conscious Delegation: tutorials/rl_papillon/index.ipynb
- RL for Multi-Hop Research: tutorials/rl_multihop/index.ipynb
- Tools, Development, and Deployment:
- Overview: tutorials/core_development/index.md
- Use MCP in DSPy: tutorials/mcp/index.md
- Output Refinement: tutorials/output_refinement/best-of-n-and-refine.md
- Saving and Loading: tutorials/saving/index.md
- Cache: tutorials/cache/index.md
- Deployment: tutorials/deployment/index.md
- Debugging & Observability: tutorials/observability/index.md
- Tracking DSPy Optimizers: tutorials/optimizer_tracking/index.md
- Streaming: tutorials/streaming/index.md
- Async: tutorials/async/index.md
- Real-World Examples:
- Overview: tutorials/real_world_examples/index.md
- Generating llms.txt: tutorials/llms_txt_generation/index.md
- Memory-Enabled ReAct Agents: tutorials/mem0_react_agent/index.md
- Financial Analysis with Yahoo Finance: tutorials/yahoo_finance_react/index.md
- Email Information Extraction: tutorials/email_extraction/index.md
- Code Generation for Unfamiliar Libraries: tutorials/sample_code_generation/index.md
- Building a Creative Text-Based AI Game: tutorials/ai_text_game/index.md
- Community:
- Use Cases: community/use-cases.md
- Built with DSPy: community/built-with-dspy.md
- Resources: community/community-resources.md
- Contributing: community/how-to-contribute.md
- Normalized LM API Migration: community/normalized-lm-api-migration.md
- FAQ:
- FAQ: faqs.md
- Cheatsheet: cheatsheet.md
- API Reference:
- API Reference: api/index.md
- Adapters:
- api/adapters/index.md
- Adapter: api/adapters/Adapter.md
- ChatAdapter: api/adapters/ChatAdapter.md
- XMLAdapter: api/adapters/XMLAdapter.md
- JSONAdapter: api/adapters/JSONAdapter.md
- TwoStepAdapter: api/adapters/TwoStepAdapter.md
- Evaluation:
- api/evaluation/index.md
- CompleteAndGrounded: api/evaluation/CompleteAndGrounded.md
- Evaluate: api/evaluation/Evaluate.md
- EvaluationResult: api/evaluation/EvaluationResult.md
- SemanticF1: api/evaluation/SemanticF1.md
- answer_exact_match: api/evaluation/answer_exact_match.md
- answer_passage_match: api/evaluation/answer_passage_match.md
- Experimental:
- api/experimental/index.md
- Citations: api/experimental/Citations.md
- Document: api/experimental/Document.md
- Models:
- api/models/index.md
- BaseLM: api/models/BaseLM.md
- Embedder: api/models/Embedder.md
- LM: api/models/LM.md
- Modules:
- api/modules/index.md
- BestOfN: api/modules/BestOfN.md
- ChainOfThought: api/modules/ChainOfThought.md
- CodeAct: api/modules/CodeAct.md
- Module: api/modules/Module.md
- MultiChainComparison: api/modules/MultiChainComparison.md
- Parallel: api/modules/Parallel.md
- Predict: api/modules/Predict.md
- ProgramOfThought: api/modules/ProgramOfThought.md
- ReAct: api/modules/ReAct.md
- Refine: api/modules/Refine.md
- RLM: api/modules/RLM.md
- Optimizers:
- api/optimizers/index.md
- GEPA:
- 1. GEPA Overview: api/optimizers/GEPA/overview.md
- 2. GEPA Advanced: api/optimizers/GEPA/GEPA_Advanced.md
- BetterTogether: api/optimizers/BetterTogether.md
- BootstrapFewShot: api/optimizers/BootstrapFewShot.md
- BootstrapFewShotWithRandomSearch: api/optimizers/BootstrapFewShotWithRandomSearch.md
- BootstrapFinetune: api/optimizers/BootstrapFinetune.md
- BootstrapRS: api/optimizers/BootstrapRS.md
- COPRO: api/optimizers/COPRO.md
- Ensemble: api/optimizers/Ensemble.md
- InferRules: api/optimizers/InferRules.md
- KNN: api/optimizers/KNN.md
- KNNFewShot: api/optimizers/KNNFewShot.md
- LabeledFewShot: api/optimizers/LabeledFewShot.md
- MIPROv2: api/optimizers/MIPROv2.md
- SIMBA: api/optimizers/SIMBA.md
- Primitives:
- api/primitives/index.md
- Audio: api/primitives/Audio.md
- Code: api/primitives/Code.md
- Example: api/primitives/Example.md
- History: api/primitives/History.md
- Image: api/primitives/Image.md
- Prediction: api/primitives/Prediction.md
- Tool: api/primitives/Tool.md
- ToolCalls: api/primitives/ToolCalls.md
- Signatures:
- api/signatures/index.md
- InputField: api/signatures/InputField.md
- OutputField: api/signatures/OutputField.md
- Signature: api/signatures/Signature.md
- Tools:
- api/tools/index.md
- ColBERTv2: api/tools/ColBERTv2.md
- Embeddings: api/tools/Embeddings.md
- PythonInterpreter: api/tools/PythonInterpreter.md
- Utils:
- api/utils/index.md
- Errors: api/utils/Errors.md
- configure: api/utils/configure.md
- context: api/utils/context.md
- StatusMessage: api/utils/StatusMessage.md
- StatusMessageProvider: api/utils/StatusMessageProvider.md
- StreamListener: api/utils/StreamListener.md
- asyncify: api/utils/asyncify.md
- configure_cache: api/utils/configure_cache.md
- disable_litellm_logging: api/utils/disable_litellm_logging.md
- disable_logging: api/utils/disable_logging.md
- enable_litellm_logging: api/utils/enable_litellm_logging.md
- enable_logging: api/utils/enable_logging.md
- inspect_history: api/utils/inspect_history.md
- load: api/utils/load.md
- streamify: api/utils/streamify.md
theme:
name: material
custom_dir: overrides
font:
text: Inter
code: Fira Mono
features:
- navigation.tabs
- navigation.path
- navigation.indexes
- navigation.expand
- toc.follow
- navigation.top
- search.suggest
- search.highlight
- content.tabs.link
- content.code.annotation
- content.code.copy
- navigation.footer
language: en
palette:
- scheme: default
toggle:
icon: material/weather-night
name: Switch to dark mode
primary: white
accent: black
- scheme: slate
toggle:
icon: material/weather-sunny
name: Switch to light mode
primary: black
accent: lime
icon:
repo: fontawesome/brands/git-alt
edit: material/pencil
view: material/eye
logo: static/dspy-logo.svg
favicon: static/img/logo.png
extra_css:
- stylesheets/extra.css
plugins:
- social
- search:
lang: en
separator: '[\s\-\.]+'
- mkdocstrings:
handlers:
python:
options:
docstring_style: google
show_source: true
show_root_heading: true
heading_level: 3
members_order: source
separate_signature: false
show_category_heading: true
show_symbol_type_heading: true
show_docstring_parameters: true
show_if_no_docstring: true
show_signature_annotations: true
unwrap_annotated: true
annotations_path: brief
docstring_section_style: table
merge_init_into_class: true
rendering:
show_if_no_docstring: true
show_warnings: false
html_meta: false
- mkdocs-jupyter:
ignore_h1_titles: true
- redirects:
redirect_maps:
# Redirect /intro/ to the main page
"intro/index.md": "index.md"
"intro.md": "index.md"
"deep-dive/optimizers/bootstrap-fewshot.md": "api/optimizers/BootstrapFewShot.md"
"deep-dive/optimizers/bfrs.md": "api/optimizers/BootstrapFewShotWithRandomSearch.md"
"deep-dive/optimizers/BootstrapFinetune.md": "api/optimizers/BootstrapFinetune.md"
"deep-dive/optimizers/copro.md": "api/optimizers/COPRO.md"
"deep-dive/optimizers/Ensemble.md": "api/optimizers/Ensemble.md"
"deep-dive/optimizers/LabeledFewShot.md": "api/optimizers/LabeledFewShot.md"
"deep-dive/optimizers/miprov2.md": "api/optimizers/MIPROv2.md"
"api/optimizers/GEPA/index.md": "api/optimizers/GEPA/overview.md"
"docs/quick-start/getting-started-01.md": "tutorials/rag/index.ipynb"
"docs/quick-start/getting-started-02.md": "tutorials/rag/index.ipynb"
"quick-start/getting-started-01.md": "tutorials/rag/index.ipynb"
"quick-start/getting-started-02.md": "tutorials/rag/index.ipynb"
"community/community-ports.md": "community/built-with-dspy.md"
"production/companies.md": "community/use-cases.md"
# Redirect old learn/ pages to the new Getting Started tutorial
"learn/index.md": "getting-started/program-dont-prompt.md"
"learn/programming/overview.md": "getting-started/first-program.md"
"learn/programming/language_models.md": "getting-started/installation.md"
"learn/programming/signatures.md": "getting-started/expanding-signatures.md"
"learn/programming/modules.md": "getting-started/changing-modules.md"
"learn/programming/adapters.md": "getting-started/first-program.md"
"learn/programming/tools.md": "getting-started/react-and-tools.md"
"learn/programming/mcp.md": "getting-started/react-and-tools.md"
"learn/evaluation/overview.md": "getting-started/metrics.md"
"learn/evaluation/data.md": "getting-started/metrics.md"
"learn/evaluation/metrics.md": "getting-started/metrics.md"
"learn/optimization/overview.md": "getting-started/gepa-optimization.md"
"learn/optimization/optimizers.md": "getting-started/gepa-optimization.md"
# Redirect old numbered Getting Started URLs to the new kebab-case paths
"getting_started/01_program_dont_prompt.md": "getting-started/program-dont-prompt.md"
"getting_started/02_installation.md": "getting-started/installation.md"
"getting_started/03_first_program.md": "getting-started/first-program.md"
"getting_started/04_expanding_signatures.md": "getting-started/expanding-signatures.md"
"getting_started/05_class_based_signatures.md": "getting-started/class-based-signatures.md"
"getting_started/06_changing_modules.md": "getting-started/changing-modules.md"
"getting_started/07_react_and_tools.md": "getting-started/react-and-tools.md"
"getting_started/08_composing_modules.md": "getting-started/composing-modules.md"
"getting_started/09_metrics.md": "getting-started/metrics.md"
"getting_started/10_gepa_optimization.md": "getting-started/gepa-optimization.md"
"getting_started/11_saving_and_loading.md": "getting-started/saving-and-loading.md"
"getting_started/12_where_to_go_next.md": "getting-started/where-to-go-next.md"
- llmstxt:
markdown_description: >
DSPy is the framework for programming—rather than prompting—language models.
DSPy unifies techniques for prompting, fine-tuning, reasoning, tool use, and evaluation of LMs.
It provides a systematic approach to building AI applications through composable modules,
optimization techniques, and evaluation frameworks.
sections:
Get Started:
- index.md: DSPy overview and quick start guide
Getting Started:
- getting-started/**.md
Diving Deeper:
- diving-deeper/**.md
Tutorials - Docs:
- tutorials/**.md
Tutorials - Notebooks:
- tutorials/**.ipynb
Community:
- community/**.md
FAQ:
- faqs.md: Common questions on DSPy usage, comparisons, optimization, and debugging
- cheatsheet.md: DSPy cheatsheet for quick reference
API Reference:
- api/**.md
hooks:
- hooks/fetch_stats.py
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/stanfordnlp/dspy
- icon: fontawesome/brands/discord
link: https://discord.gg/XCGy2WDCQB
extra_javascript:
- "js/runllm-widget.js"
- "js/tutorial-nav.js"
- "js/hero-interactive.js"
markdown_extensions:
- smarty
- toc:
permalink: true
toc_depth: 3
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- admonition
- pymdownx.arithmatex:
generic: true
- footnotes
- pymdownx.details
- pymdownx.superfences
- pymdownx.mark
- attr_list
- md_in_html
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
copyright: |
© 2026 <a href="https://github.com/stanfordnlp" target="_blank" rel="noopener">DSPy</a>