llmci 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. llmci-0.1.0/LICENSE +189 -0
  2. llmci-0.1.0/PKG-INFO +337 -0
  3. llmci-0.1.0/README.md +301 -0
  4. llmci-0.1.0/pyproject.toml +70 -0
  5. llmci-0.1.0/setup.cfg +4 -0
  6. llmci-0.1.0/src/llmci.egg-info/PKG-INFO +337 -0
  7. llmci-0.1.0/src/llmci.egg-info/SOURCES.txt +43 -0
  8. llmci-0.1.0/src/llmci.egg-info/dependency_links.txt +1 -0
  9. llmci-0.1.0/src/llmci.egg-info/entry_points.txt +2 -0
  10. llmci-0.1.0/src/llmci.egg-info/requires.txt +12 -0
  11. llmci-0.1.0/src/llmci.egg-info/top_level.txt +1 -0
  12. llmci-0.1.0/src/scaffold/__init__.py +3 -0
  13. llmci-0.1.0/src/scaffold/baseline.py +120 -0
  14. llmci-0.1.0/src/scaffold/cli.py +350 -0
  15. llmci-0.1.0/src/scaffold/comparison.py +98 -0
  16. llmci-0.1.0/src/scaffold/config.py +109 -0
  17. llmci-0.1.0/src/scaffold/dataset/__init__.py +0 -0
  18. llmci-0.1.0/src/scaffold/dataset/check.py +171 -0
  19. llmci-0.1.0/src/scaffold/dataset/import_data.py +128 -0
  20. llmci-0.1.0/src/scaffold/dataset/loader.py +141 -0
  21. llmci-0.1.0/src/scaffold/errors.py +27 -0
  22. llmci-0.1.0/src/scaffold/import_promptfoo.py +196 -0
  23. llmci-0.1.0/src/scaffold/init.py +164 -0
  24. llmci-0.1.0/src/scaffold/integrations/__init__.py +0 -0
  25. llmci-0.1.0/src/scaffold/integrations/github.py +164 -0
  26. llmci-0.1.0/src/scaffold/judges/__init__.py +0 -0
  27. llmci-0.1.0/src/scaffold/judges/base.py +34 -0
  28. llmci-0.1.0/src/scaffold/judges/composite.py +249 -0
  29. llmci-0.1.0/src/scaffold/judges/custom.py +91 -0
  30. llmci-0.1.0/src/scaffold/judges/exact_match.py +30 -0
  31. llmci-0.1.0/src/scaffold/judges/factory.py +43 -0
  32. llmci-0.1.0/src/scaffold/judges/llm_judge.py +231 -0
  33. llmci-0.1.0/src/scaffold/metrics.py +230 -0
  34. llmci-0.1.0/src/scaffold/migrate/__init__.py +1 -0
  35. llmci-0.1.0/src/scaffold/migrate/optimizer.py +312 -0
  36. llmci-0.1.0/src/scaffold/migrate/report.py +57 -0
  37. llmci-0.1.0/src/scaffold/migrate/splitter.py +58 -0
  38. llmci-0.1.0/src/scaffold/migrate/stopping.py +29 -0
  39. llmci-0.1.0/src/scaffold/models.py +215 -0
  40. llmci-0.1.0/src/scaffold/report.py +138 -0
  41. llmci-0.1.0/src/scaffold/runner.py +216 -0
  42. llmci-0.1.0/src/scaffold/targets/__init__.py +0 -0
  43. llmci-0.1.0/src/scaffold/targets/agent.py +256 -0
  44. llmci-0.1.0/src/scaffold/targets/command.py +113 -0
  45. llmci-0.1.0/src/scaffold/targets/direct.py +74 -0
llmci-0.1.0/LICENSE ADDED
@@ -0,0 +1,189 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work.
38
+
39
+ "Derivative Works" shall mean any work, whether in Source or Object
40
+ form, that is based on (or derived from) the Work and for which the
41
+ editorial revisions, annotations, elaborations, or other modifications
42
+ represent, as a whole, an original work of authorship. For the purposes
43
+ of this License, Derivative Works shall not include works that remain
44
+ separable from, or merely link (or bind by name) to the interfaces of,
45
+ the Work and Derivative Works thereof.
46
+
47
+ "Contribution" shall mean any work of authorship, including
48
+ the original version of the Work and any modifications or additions
49
+ to that Work or Derivative Works thereof, that is intentionally
50
+ submitted to the Licensor for inclusion in the Work by the copyright owner
51
+ or by an individual or Legal Entity authorized to submit on behalf of
52
+ the copyright owner. For the purposes of this definition, "submitted"
53
+ means any form of electronic, verbal, or written communication sent
54
+ to the Licensor or its representatives, including but not limited to
55
+ communication on electronic mailing lists, source code control systems,
56
+ and issue tracking systems that are managed by, or on behalf of, the
57
+ Licensor for the purpose of discussing and improving the Work, but
58
+ excluding communication that is conspicuously marked or otherwise
59
+ designated in writing by the copyright owner as "Not a Contribution."
60
+
61
+ "Contributor" shall mean Licensor and any individual or Legal Entity
62
+ on behalf of whom a Contribution has been received by the Licensor and
63
+ subsequently incorporated within the Work.
64
+
65
+ 2. Grant of Copyright License. Subject to the terms and conditions of
66
+ this License, each Contributor hereby grants to You a perpetual,
67
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
68
+ copyright license to reproduce, prepare Derivative Works of,
69
+ publicly display, publicly perform, sublicense, and distribute the
70
+ Work and such Derivative Works in Source or Object form.
71
+
72
+ 3. Grant of Patent License. Subject to the terms and conditions of
73
+ this License, each Contributor hereby grants to You a perpetual,
74
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
75
+ (except as stated in this section) patent license to make, have made,
76
+ use, offer to sell, sell, import, and otherwise transfer the Work,
77
+ where such license applies only to those patent claims licensable
78
+ by such Contributor that are necessarily infringed by their
79
+ Contribution(s) alone or by combination of their Contribution(s)
80
+ with the Work to which such Contribution(s) was submitted. If You
81
+ institute patent litigation against any entity (including a
82
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
83
+ or a Contribution incorporated within the Work constitutes direct
84
+ or contributory patent infringement, then any patent licenses
85
+ granted to You under this License for that Work shall terminate
86
+ as of the date such litigation is filed.
87
+
88
+ 4. Redistribution. You may reproduce and distribute copies of the
89
+ Work or Derivative Works thereof in any medium, with or without
90
+ modifications, and in Source or Object form, provided that You
91
+ meet the following conditions:
92
+
93
+ (a) You must give any other recipients of the Work or
94
+ Derivative Works a copy of this License; and
95
+
96
+ (b) You must cause any modified files to carry prominent notices
97
+ stating that You changed the files; and
98
+
99
+ (c) You must retain, in the Source form of any Derivative Works
100
+ that You distribute, all copyright, patent, trademark, and
101
+ attribution notices from the Source form of the Work,
102
+ excluding those notices that do not pertain to any part of
103
+ the Derivative Works; and
104
+
105
+ (d) If the Work includes a "NOTICE" text file as part of its
106
+ distribution, then any Derivative Works that You distribute must
107
+ include a readable copy of the attribution notices contained
108
+ within such NOTICE file, excluding any notices that do not
109
+ pertain to any part of the Derivative Works, in at least one
110
+ of the following places: within a NOTICE text file distributed
111
+ as part of the Derivative Works; within the Source form or
112
+ documentation, if provided along with the Derivative Works; or,
113
+ within a display generated by the Derivative Works, if and
114
+ wherever such third-party notices normally appear. The contents
115
+ of the NOTICE file are for informational purposes only and
116
+ do not modify the License. You may add Your own attribution
117
+ notices within Derivative Works that You distribute, alongside
118
+ or as an addendum to the NOTICE text from the Work, provided
119
+ that such additional attribution notices cannot be construed
120
+ as modifying the License.
121
+
122
+ You may add Your own copyright statement to Your modifications and
123
+ may provide additional or different license terms and conditions
124
+ for use, reproduction, or distribution of Your modifications, or
125
+ for any such Derivative Works as a whole, provided Your use,
126
+ reproduction, and distribution of the Work otherwise complies with
127
+ the conditions stated in this License.
128
+
129
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
130
+ any Contribution intentionally submitted for inclusion in the Work
131
+ by You to the Licensor shall be under the terms and conditions of
132
+ this License, without any additional terms or conditions.
133
+ Notwithstanding the above, nothing herein shall supersede or modify
134
+ the terms of any separate license agreement you may have executed
135
+ with Licensor regarding such Contributions.
136
+
137
+ 6. Trademarks. This License does not grant permission to use the trade
138
+ names, trademarks, service marks, or product names of the Licensor,
139
+ except as required for reasonable and customary use in describing the
140
+ origin of the Work and reproducing the content of the NOTICE file.
141
+
142
+ 7. Disclaimer of Warranty. Unless required by applicable law or
143
+ agreed to in writing, Licensor provides the Work (and each
144
+ Contributor provides its Contributions) on an "AS IS" BASIS,
145
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
146
+ implied, including, without limitation, any warranties or conditions
147
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
148
+ PARTICULAR PURPOSE. You are solely responsible for determining the
149
+ appropriateness of using or redistributing the Work and assume any
150
+ risks associated with Your exercise of permissions under this License.
151
+
152
+ 8. Limitation of Liability. In no event and under no legal theory,
153
+ whether in tort (including negligence), contract, or otherwise,
154
+ unless required by applicable law (such as deliberate and grossly
155
+ negligent acts) or agreed to in writing, shall any Contributor be
156
+ liable to You for damages, including any direct, indirect, special,
157
+ incidental, or consequential damages of any character arising as a
158
+ result of this License or out of the use or inability to use the
159
+ Work (including but not limited to damages for loss of goodwill,
160
+ work stoppage, computer failure or malfunction, or any and all
161
+ other commercial damages or losses), even if such Contributor
162
+ has been advised of the possibility of such damages.
163
+
164
+ 9. Accepting Warranty or Additional Liability. While redistributing
165
+ the Work or Derivative Works thereof, You may choose to offer,
166
+ and charge a fee for, acceptance of support, warranty, indemnity,
167
+ or other liability obligations and/or rights consistent with this
168
+ License. However, in accepting such obligations, You may act only
169
+ on Your own behalf and on Your sole responsibility, not on behalf
170
+ of any other Contributor, and only if You agree to indemnify,
171
+ defend, and hold each Contributor harmless for any liability
172
+ incurred by, or claims asserted against, such Contributor by reason
173
+ of your accepting any such warranty or additional liability.
174
+
175
+ END OF TERMS AND CONDITIONS
176
+
177
+ Copyright 2026 Scaffold AI
178
+
179
+ Licensed under the Apache License, Version 2.0 (the "License");
180
+ you may not use this file except in compliance with the License.
181
+ You may obtain a copy of the License at
182
+
183
+ http://www.apache.org/licenses/LICENSE-2.0
184
+
185
+ Unless required by applicable law or agreed to in writing, software
186
+ distributed under the License is distributed on an "AS IS" BASIS,
187
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
188
+ See the License for the specific language governing permissions and
189
+ limitations under the License.
llmci-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,337 @@
1
+ Metadata-Version: 2.4
2
+ Name: llmci
3
+ Version: 0.1.0
4
+ Summary: CI-native regression testing and migration for LLMs
5
+ License-Expression: Apache-2.0
6
+ Project-URL: Homepage, https://github.com/alexminnaar/scaffold
7
+ Project-URL: Documentation, https://github.com/alexminnaar/scaffold#readme
8
+ Project-URL: Repository, https://github.com/alexminnaar/scaffold
9
+ Project-URL: Issues, https://github.com/alexminnaar/scaffold/issues
10
+ Project-URL: Changelog, https://github.com/alexminnaar/scaffold/releases
11
+ Keywords: llm,eval,evaluation,ci,regression,testing,prompt
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Environment :: Console
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Topic :: Software Development :: Quality Assurance
20
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
21
+ Requires-Python: >=3.10
22
+ Description-Content-Type: text/markdown
23
+ License-File: LICENSE
24
+ Requires-Dist: click>=8.1
25
+ Requires-Dist: pyyaml>=6.0
26
+ Requires-Dist: pydantic>=2.0
27
+ Requires-Dist: litellm>=1.40
28
+ Requires-Dist: rich>=13.0
29
+ Provides-Extra: dev
30
+ Requires-Dist: pytest>=8.0; extra == "dev"
31
+ Requires-Dist: pytest-asyncio>=0.23; extra == "dev"
32
+ Requires-Dist: ruff>=0.4; extra == "dev"
33
+ Requires-Dist: mypy>=1.10; extra == "dev"
34
+ Requires-Dist: types-PyYAML>=6.0; extra == "dev"
35
+ Dynamic: license-file
36
+
37
+ # Scaffold
38
+
39
+ CI-native regression testing and migration for LLMs.
40
+
41
+ Catch quality drops before they merge. Migrate models without breaking things.
42
+
43
+ Scaffold is not an observability tool — it's a **pre-merge safety gate**. Define eval datasets, set quality thresholds, and let CI block bad changes to your prompts, models, or pipelines.
44
+
45
+ ## Installation
46
+
47
+ ```bash
48
+ pip install llmci
49
+ ```
50
+
51
+ The PyPI package is `llmci`; the CLI command is `scaffold`.
52
+
53
+ Requires Python 3.11+.
54
+
55
+ ## Quick Start
56
+
57
+ ### 1. Initialize
58
+
59
+ ```bash
60
+ scaffold init
61
+ ```
62
+
63
+ This creates a `scaffold.yaml` config and a starter eval dataset. You'll be asked:
64
+ - **Target mode** — `command` (run any script) or `direct` (call an LLM API)
65
+ - **Task type** — classification, open-ended, or agent
66
+ - **Eval name** — what to call this eval
67
+
68
+ ### 2. Define your eval dataset
69
+
70
+ Edit the generated `evals/<name>.jsonl`. Each line is a JSON object:
71
+
72
+ ```json
73
+ {"input": "My printer won't connect to wifi", "expected": "hardware"}
74
+ {"input": "I need a refund for order #882", "expected": "billing"}
75
+ ```
76
+
77
+ Or add examples interactively:
78
+
79
+ ```bash
80
+ scaffold dataset add --name my-eval
81
+ ```
82
+
83
+ ### 3. Run
84
+
85
+ ```bash
86
+ scaffold run
87
+ ```
88
+
89
+ Output:
90
+
91
+ ```
92
+ ## Scaffold Eval Report
93
+
94
+ | Eval | Metric | Score | Threshold | Status |
95
+ |------|--------|-------|-----------|--------|
96
+ | ticket-classification | accuracy | 0.950 | ≥ 0.9 | ✅ |
97
+ | ticket-classification | f1_macro | 0.940 | ≥ 0.85 | ✅ |
98
+ ```
99
+
100
+ Exit code 0 = all thresholds pass. Exit code 1 = regression detected.
101
+
102
+ ## Configuration
103
+
104
+ `scaffold.yaml` defines your target, evals, and settings:
105
+
106
+ ```yaml
107
+ version: 1
108
+
109
+ target:
110
+ command: "python3 run_prompt.py --input {input_file} --output {output_file}"
111
+
112
+ evals:
113
+ - name: ticket-classification
114
+ dataset: ./evals/tickets.jsonl
115
+ judge: exact_match
116
+ metrics:
117
+ - name: accuracy
118
+ threshold: 0.90
119
+ mode: absolute
120
+ - name: f1_macro
121
+ threshold: 0.85
122
+ mode: absolute
123
+
124
+ settings:
125
+ parallelism: 5
126
+ timeout_per_call: 30
127
+ retries: 1
128
+ ```
129
+
130
+ ### Target Modes
131
+
132
+ **Command mode** — wrap any script, any language:
133
+
134
+ ```yaml
135
+ target:
136
+ command: "python3 my_pipeline.py --input {input_file} --output {output_file}"
137
+ ```
138
+
139
+ Your script reads a JSON input file and writes a JSON output file with an `"output"` key.
140
+
141
+ **Direct API mode** — call an LLM provider directly:
142
+
143
+ ```yaml
144
+ target:
145
+ direct:
146
+ provider: openai
147
+ model: gpt-4o-mini
148
+ prompt_file: prompt.txt
149
+ ```
150
+
151
+ Uses [litellm](https://github.com/BerriAI/litellm) under the hood, so any provider works (OpenAI, Anthropic, Azure, etc.). Set credentials via environment variables.
152
+
153
+ For internal proxies or custom gateways, add `base_url`:
154
+
155
+ ```yaml
156
+ target:
157
+ direct:
158
+ provider: openai
159
+ model: gpt-4o
160
+ base_url: https://llm-proxy.internal.company.com/v1
161
+ prompt_file: prompt.txt
162
+ ```
163
+
164
+ ### Judges
165
+
166
+ | Type | Use case | Config |
167
+ |------|----------|--------|
168
+ | `exact_match` | Classification, deterministic outputs | `judge: exact_match` |
169
+ | `llm` | Open-ended generation, summarization | `judge: {type: llm, model: gpt-4o, rubric: [...]}` |
170
+ | `custom` | Domain-specific logic (JSON validation, etc.) | `judge: {type: custom, module: ./judge.py, function: evaluate}` |
171
+ | `composite` | Agent evaluation with multiple criteria | `judge: {type: composite, criteria: [...]}` |
172
+
173
+ ### Metrics
174
+
175
+ **Score-based:**
176
+ - `accuracy` — fraction of exact matches (score = 1.0)
177
+ - `pass_rate` — fraction of examples scoring >= 0.5
178
+ - `mean_score` — average judge score
179
+ - `median_score` — median judge score (robust to outliers)
180
+ - `min_score` / `max_score` — worst and best scores in dataset
181
+ - `error_rate` — fraction of examples that errored
182
+
183
+ **Classification:**
184
+ - `f1_macro`, `f1_micro`, `f1_weighted` — F1 score variants
185
+ - `precision_macro`, `precision_micro`, `precision_weighted` — precision variants
186
+ - `recall_macro`, `recall_micro`, `recall_weighted` — recall variants
187
+
188
+ **Similarity:**
189
+ - `cosine_similarity` — token-overlap cosine similarity between expected and actual
190
+
191
+ **Latency:**
192
+ - `latency_mean`, `latency_p50`, `latency_p90`, `latency_p99` — response time percentiles (ms)
193
+
194
+ Each metric supports two threshold modes:
195
+ - `absolute` — score must be >= threshold (for latency metrics, must be <= threshold)
196
+ - `max_regression` — drop from baseline must be <= threshold (e.g., 0.05 = max 5% drop)
197
+
198
+ ## CI Integration
199
+
200
+ ### GitHub Actions
201
+
202
+ Add to your workflow:
203
+
204
+ ```yaml
205
+ - uses: alexminnaar/scaffold@main
206
+ with:
207
+ compare-to: origin/main
208
+ env:
209
+ OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
210
+ ```
211
+
212
+ Or use the CLI directly:
213
+
214
+ ```yaml
215
+ - run: pip install llmci
216
+ - run: scaffold run --compare-to=origin/main
217
+ env:
218
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
219
+ ```
220
+
221
+ When running in GitHub Actions, Scaffold automatically posts eval results as a PR comment.
222
+
223
+ ### Baselines
224
+
225
+ Store baseline scores on your main branch:
226
+
227
+ ```bash
228
+ scaffold run --update-baseline
229
+ ```
230
+
231
+ Then compare PRs against that baseline:
232
+
233
+ ```bash
234
+ scaffold run --compare-to=main
235
+ ```
236
+
237
+ ## Model Migration
238
+
239
+ When switching models (e.g., GPT-4o to GPT-4.5), Scaffold can automatically tune your prompt to maintain quality parity:
240
+
241
+ ```bash
242
+ scaffold migrate \
243
+ --from gpt-4o \
244
+ --to gpt-4.5 \
245
+ --eval ticket-classification \
246
+ --optimizer-model gpt-4o
247
+ ```
248
+
249
+ The optimizer:
250
+ 1. Splits your dataset into train/validation/holdout
251
+ 2. Iteratively suggests minimal prompt modifications
252
+ 3. Stops when improvement plateaus (early stopping)
253
+ 4. Reports the final holdout score vs. the original model
254
+
255
+ ## Agent Evaluation
256
+
257
+ Test tool-using and conversational agents with composite judging:
258
+
259
+ ```yaml
260
+ evals:
261
+ - name: agent-tool-use
262
+ level: agent
263
+ dataset: ./evals/scenarios.jsonl
264
+ judge:
265
+ type: composite
266
+ criteria:
267
+ - name: constraints
268
+ type: constraint
269
+ weight: 1.0
270
+ - name: outcome
271
+ type: outcome
272
+ weight: 2.0
273
+ ```
274
+
275
+ Supports:
276
+ - **Single-turn** and **multi-turn** conversations
277
+ - **Constraint checking** — tool call budgets, required/forbidden tools, token limits
278
+ - **Outcome judging** — LLM-based evaluation of final output
279
+ - **Trajectory judging** — LLM-based evaluation of execution path quality
280
+ - **Full replay** or **history injection** modes for multi-turn
281
+
282
+ ## Dataset Tools
283
+
284
+ ```bash
285
+ # Initialize a new dataset
286
+ scaffold dataset init --name my-eval --type classification
287
+
288
+ # Add examples interactively
289
+ scaffold dataset add --name my-eval
290
+
291
+ # Analyze coverage and quality
292
+ scaffold dataset check --name my-eval
293
+
294
+ # Import from CSV or JSON
295
+ scaffold dataset import --name my-eval --from data.csv
296
+ ```
297
+
298
+ ## Migrating from Promptfoo
299
+
300
+ ```bash
301
+ scaffold import-promptfoo promptfooconfig.yaml
302
+ ```
303
+
304
+ Converts providers, test assertions, and variables into Scaffold's format.
305
+
306
+ ## Examples
307
+
308
+ | Example | What it demonstrates |
309
+ |---------|---------------------|
310
+ | [`01-ci-regression`](examples/01-ci-regression/) | Ticket classifier with exact_match + F1 |
311
+ | [`02-model-migration`](examples/02-model-migration/) | Prompt optimization across models |
312
+ | [`03-llm-as-judge`](examples/03-llm-as-judge/) | Open-ended generation with rubric judging |
313
+ | [`04-custom-judge`](examples/04-custom-judge/) | JSON schema validation with a Python judge |
314
+ | [`05-agent-single-turn`](examples/05-agent-single-turn/) | Tool-using agent with constraint checking |
315
+ | [`06-agent-multi-turn`](examples/06-agent-multi-turn/) | Multi-turn conversation testing |
316
+ | [`07-pipeline-level`](examples/07-pipeline-level/) | Full RAG pipeline end-to-end |
317
+ | [`08-fastapi-service`](examples/08-fastapi-service/) | Pre/post processing pipeline with dual-level testing |
318
+ | [`09-summarization-qa`](examples/09-summarization-qa/) | Multi-criteria LLM judge with reference-free evaluation |
319
+
320
+ ## CLI Reference
321
+
322
+ ```
323
+ scaffold run Run evals and report results
324
+ scaffold migrate Optimize prompts for a new model
325
+ scaffold init Generate scaffold.yaml interactively
326
+ scaffold dataset init Create a new eval dataset
327
+ scaffold dataset add Add examples interactively
328
+ scaffold dataset check Analyze dataset coverage
329
+ scaffold dataset import Import from CSV/JSON
330
+ scaffold import-promptfoo Convert a Promptfoo config
331
+ ```
332
+
333
+ Global flags: `-v` (verbose), `--debug` (full logging), `--version`.
334
+
335
+ ## License
336
+
337
+ Apache 2.0