dj86 commited on
Commit
544aa00
1 Parent(s): 4fe26d6

Update vlog4chat.py

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