You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Don't throw an error when the file path exceeds 255 characters.
133
+
// This is important for excessively long prompts, where you might
134
+
// run the model only to realize that it failed to save.
135
+
if fileURL.absoluteString.count >255{
136
+
log("WARNING: Image file path was shortened to 255 characters. This may unintentionally overwrite similarly named files. Original path: '\(fileURL.absoluteString)'\n")
0 commit comments