tykiww commited on
Commit
be0b5f6
1 Parent(s): b817f2f

Update connections/model.py

Browse files
Files changed (1) hide show
  1. connections/model.py +1 -1
connections/model.py CHANGED
@@ -23,7 +23,7 @@ class InferencePipeline:
23
 
24
  def infer(self, prompt):
25
 
26
- outputs = pipeline(
27
  prompt,
28
  max_new_tokens=self.conf["model"]["max_new_tokens"],
29
  )
 
23
 
24
  def infer(self, prompt):
25
 
26
+ outputs = self.pipeline(
27
  prompt,
28
  max_new_tokens=self.conf["model"]["max_new_tokens"],
29
  )