dj86 commited on
Commit
05a283f
1 Parent(s): b430493

Update vlog4chat.py

Browse files
Files changed (1) hide show
  1. vlog4chat.py +1 -1
vlog4chat.py CHANGED
@@ -131,7 +131,7 @@ class Vlogger4chat :
131
  def init_llm(self):
132
  print('\033[1;33m' + "Initializing LLM Reasoner...".center(50, '-') + '\033[0m')
133
  self.llm = TogetherLLM(
134
- model= "microsoft/WizardLM-2-8x22B",
135
  temperature=0.1,
136
  max_tokens=768
137
  )
 
131
  def init_llm(self):
132
  print('\033[1;33m' + "Initializing LLM Reasoner...".center(50, '-') + '\033[0m')
133
  self.llm = TogetherLLM(
134
+ model= os.getenv('Your_Model_Name'),
135
  temperature=0.1,
136
  max_tokens=768
137
  )