* The import statement has changed to: `import sd_parsers`.
* `ParserManager.parse()` now has an option to lazily read the image parameters.
Setting `lazy_read` to `True` will delay the evaluation of parameter values until necessary.
This will speed up the initial metadata retrieval. (into `PromptInfo.parameters`)
Warning: as lazy parsing does delay some metadata checks, false results will happen more often (i.e., JPEG images with a set `UserComment` field).
* `PromptInfo.prompts` changed from a list of tuples of positive and negative to two separate lists: `PromptInfo.prompts` and `PromptInfo.negative_prompts`.
* `PromptInfo.raw_params` was renamed to `PromptInfo.parameters`.
* The value of `PromptInfo.generator` is now an entry of `sd_parsers.Generators`.
* The ability to read instructions from a config file has been removed.