+
+
New model architecture
+
+
+ {displayName}
+ {" "}
+ uses the{" "}
+ {modelType}{" "}
+ architecture, which your installed transformers does not
+ support yet.{" "}
+ {installable ? (
+ <>
+ Install transformers{" "}
+
+ {version}
+ {" "}
+ from PyPI to load it. The install runs once and can take
+ a minute; loading continues automatically afterwards.
+ >
+ ) : devOnly ? (
+ <>
+ Even the latest transformers release on PyPI does not
+ support it yet: the architecture is only available on the
+ transformers development branch (main), and Studio does
+ not install development builds. Support arrives with the
+ next transformers release on PyPI.
+ >
+ ) : (
+ <>
+ No released transformers version supports it yet, so it
+ cannot be loaded.
+ >
+ )}
+ {!installable && trustRemoteCodeFallback ? (
+ <>
+ {" "}
+ This model also ships its own modeling code; you can
+ continue and review enabling that custom code instead.
+ >
+ ) : null}
+
+
+
+ {phase === "error" && errorMessage ? (
+
+ {errorMessage}
+
+ ) : null}
+
+ {installing ? (
+
+
+ Installing transformers {version}... This can take a minute.
+
+ ) : null}
+