tykiww commited on
Commit
63c4df3
1 Parent(s): e4d8995

Update connections/model.py

Browse files
Files changed (1) hide show
  1. connections/model.py +6 -1
connections/model.py CHANGED
@@ -1,6 +1,11 @@
1
  import spaces
 
2
  @spaces.GPU
3
- from unsloth import FastLanguageModel
 
 
 
 
4
 
5
 
6
  class InferencePipeline:
 
1
  import spaces
2
+
3
  @spaces.GPU
4
+ def get_unsloth()
5
+ from unsloth import FastLanguageModel
6
+ return FastLanguageModel
7
+
8
+ FastLanguageModel = get_unsloth()
9
 
10
 
11
  class InferencePipeline: