5830fda5165bc4ab99485120c435628588cd5146
scriptorium
Scriptorium is a config-driven prompt execution engine.
It separates prompt definitions (what to generate) from execution profiles (how to call an OpenAI-compatible model endpoint), then runs or renders a prepared request from named input artifacts.
Quickstart
From the repository root:
go run ./cmd/scriptorium render \
--config ./examples/config.yml \
--prompt generic.markdown_summary \
--input transcript=./examples/fixtures/transcript.md \
--input glossary=./examples/fixtures/glossary.yml \
--format json
This command renders the prepared prompt and effective runtime settings without calling an LLM.
Documentation
Description