TJ
TJ
Since 8.5.6+, an attempt to call `class_schema` on a class that cannot be converted by `marschmallow_dataclass` throws `AttributeError`. Previously it was a `TypeError` which is somehow meaningful because the type...
Currently, the parameters' validation is bound to ``` try: signature(func).bind(*extract_args(request, context), **extract_kwargs(request)) except TypeError as exc: return Left(InvalidParamsResult(str(exc))) return Right(func) ``` in [dispatcher.py](https://github.com/explodinglabs/jsonrpcserver/blob/cbc8e39ae968ed439dafa5e6e0619f2ccaa0a8f1/jsonrpcserver/dispatcher.py#L141) This validation checks if the method's signature...
### Source/destination types ```csharp public class Payload { [JsonProperty("eventType", Required = Required.Always)] public string EventType { get; set; } = null!; } ``` ### Source/destination JSON ```javascript {"eventType":""} (Scenario 1)...
### Your question When generating images in JPEG format, SwarmUI writes the metadata JSON into "Comments" property which can be inspected e.g. with Windows Explorer. When uploading to Civitai, this...