wen313
wen313
``` func MarshalResponse(msg []byte) (Response, error) { var j map[string]interface{} err := jsonUnmarshal(msg, &j) if err != nil { return Response{}, gremerror.NewUnmarshalError("MarshalResponse", msg, err) } var ( status = j["status"].(map[string]interface{})...
https://github.com/Mikubill/sd-webui-controlnet/blob/6b2028b187983489f5eba7d2a99d4bdbd7840079/example/chatgpt.py#L391 report error :"sd-webui-controlnet/example/chatgpt.py", line 405, in inference real_image = Image.fromarray(x_samples[0]) # default the index0 image NameError: name 'x_samples' is not defined
https://github.com/ostris/ai-toolkit/blob/3400882a8099645ce4c797f57ac258f1e1424ffd/toolkit/stable_diffusion_model.py#L535 The processing here is different from is_v3 above, which causes the text_encoder folders to download FLUX.1-schnell instead of the actual configuration. Can we also add: ``` else: # is...