We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25e99d1 commit 1c1e6b1Copy full SHA for 1c1e6b1
backend/download_models.py
@@ -12,15 +12,6 @@
12
if __name__ == "__main__":
13
build_version = os.environ.get("BUILD_VERSION", "full")
14
15
- print("--- Initializing GemmaNLPEngine to trigger model download ---")
16
- try:
17
- # This model is downloaded in all versions
18
- nlp_engine = GemmaNLPEngine()
19
- print("Gemma NLP model download (if necessary) and initialization successful.")
20
- except Exception as e:
21
- print(f"Error during Gemma NLP model download/initialization: {e}")
22
- sys.exit(1)
23
-
24
if build_version == "full":
25
26
print("--- Initializing GemmaNLPEngine to trigger model download ---")
0 commit comments