aizanlabs commited on
Commit
2379bd3
·
verified ·
1 Parent(s): 6e0bec2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -70,7 +70,13 @@ class DocumentRetrievalAndGeneration:
70
  )
71
  return generate_text
72
  def initialize_llm2(self,model_id):
73
- pipe = pipeline("text2text-generation", model="google/flan-t5-small")
 
 
 
 
 
 
74
  # pipe = pipeline("text-generation", model="mistralai/Mistral-7B-Instruct-v0.2")
75
  # model_name = "mistralai/Mistral-7B-Instruct-v0.2"
76
  # pipeline = transformers.pipeline(
 
70
  )
71
  return generate_text
72
  def initialize_llm2(self,model_id):
73
+ try:
74
+ pipe = pipeline("text-generation", model="google/gemma-2-9b")
75
+ except:
76
+ try:
77
+ pipe = pipeline("text-generation", model="microsoft/Phi-3-mini-4k-instruct", trust_remote_code=True)
78
+ except:
79
+ pipe = pipeline("text-generation", model="microsoft/Phi-3-mini-4k-instruct")
80
  # pipe = pipeline("text-generation", model="mistralai/Mistral-7B-Instruct-v0.2")
81
  # model_name = "mistralai/Mistral-7B-Instruct-v0.2"
82
  # pipeline = transformers.pipeline(