GianJSX commited on
Commit
2fe291b
1 Parent(s): c5e34be

Update AssistantService.py

Browse files
Files changed (1) hide show
  1. AssistantService.py +1 -1
AssistantService.py CHANGED
@@ -6,7 +6,7 @@ import os
6
  class GPTAssistant():
7
  def __init__(self,api_key:str):
8
  os.environ['OPENAI_API_KEY'] = api_key
9
- self.llm = ChatOpenAI(temperature=0, model_name='gpt-3.5-turbo', request_timeout=120, client=None)
10
 
11
  def chain_response_format(self, html_content):
12
  # prompt templates
 
6
  class GPTAssistant():
7
  def __init__(self,api_key:str):
8
  os.environ['OPENAI_API_KEY'] = api_key
9
+ self.llm = ChatOpenAI(temperature=0, model_name='gpt-3.5-turbo-16k', request_timeout=120, client=None)
10
 
11
  def chain_response_format(self, html_content):
12
  # prompt templates