Complete Promptkit v0.9 adoption
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
## Status And Authority
|
## Status And Authority
|
||||||
|
|
||||||
Planned. Implement the stages below in numeric order. The accepted feature
|
Complete. Implement the stages below in numeric order. The accepted feature
|
||||||
scope and target state are defined by the
|
scope and target state are defined by the
|
||||||
[Promptkit v0.9.0 adoption roadmap](promptkit-v0.9.0-adoption.md), and the
|
[Promptkit v0.9.0 adoption roadmap](promptkit-v0.9.0-adoption.md), and the
|
||||||
durable product boundary is defined by
|
durable product boundary is defined by
|
||||||
@@ -514,6 +514,8 @@ without requiring a prompt or contacting a model.
|
|||||||
|
|
||||||
## Stage 8: Complete Cross-Feature Conformance And Release Validation
|
## Stage 8: Complete Cross-Feature Conformance And Release Validation
|
||||||
|
|
||||||
|
**Completion: Complete.**
|
||||||
|
|
||||||
Close the roadmap with representative definition-level integration coverage,
|
Close the roadmap with representative definition-level integration coverage,
|
||||||
copyable examples, documentation alignment, and full validation. Do not defer
|
copyable examples, documentation alignment, and full validation. Do not defer
|
||||||
contract documentation from earlier stages to this stage; this is a final
|
contract documentation from earlier stages to this stage; this is a final
|
||||||
|
|||||||
4
examples/profiles/local-gpu.yml
Normal file
4
examples/profiles/local-gpu.yml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
id: local-gpu
|
||||||
|
backend: local-gpu
|
||||||
|
model: local-model
|
||||||
|
reasoning_effort: low
|
||||||
24
examples/render-v0.9-features.sh
Executable file
24
examples/render-v0.9-features.sh
Executable file
@@ -0,0 +1,24 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
repo_root="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
||||||
|
cd "$repo_root"
|
||||||
|
|
||||||
|
go run ./cmd/scriptorium render \
|
||||||
|
--config ./examples/config.full.yml \
|
||||||
|
--prompt generic.markdown_summary \
|
||||||
|
--profile local-gpu \
|
||||||
|
--session-id example-session \
|
||||||
|
--reasoning-effort= \
|
||||||
|
--input transcript=./examples/fixtures/transcript.md \
|
||||||
|
--input glossary=./examples/fixtures/glossary.yml
|
||||||
|
|
||||||
|
go run ./cmd/scriptorium inspect prompt \
|
||||||
|
--config ./examples/config.full.yml \
|
||||||
|
--prompt generic.markdown_summary \
|
||||||
|
--format json
|
||||||
|
|
||||||
|
go run ./cmd/scriptorium inspect profile \
|
||||||
|
--config ./examples/config.full.yml \
|
||||||
|
--profile local-gpu \
|
||||||
|
--format json
|
||||||
Reference in New Issue
Block a user