pyfcstm.llm.error
Exceptions raised by integrity-checked packaged LLM guide resources.
GrammarGuidePromptIntegrityError
- class pyfcstm.llm.error.GrammarGuidePromptIntegrityError[source]
Error raised when a packaged LLM guide integrity check fails.
This means that a Markdown prompt and its SHA-256 digest do not agree, or that the digest resource is missing or malformed. Source-tree users should run
make sha256after editing a guide and commit both files. Installed package users should reinstallpyfcstmfrom a clean distribution.Example:
>>> issubclass(GrammarGuidePromptIntegrityError, RuntimeError) True