Redmind commited on
Commit
b4fb6f3
·
verified ·
1 Parent(s): bc76f95

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -137,7 +137,7 @@ apis = [
137
 
138
  # LLM setup
139
  llm = ChatOpenAI(model="gpt-4o-mini", max_tokens=300, temperature=0.1)
140
- llm_chart = OpenAI()
141
 
142
  def get_schema(_):
143
  schema_info = db.get_table_info() # This should be a string of your SQL schema
 
137
 
138
  # LLM setup
139
  llm = ChatOpenAI(model="gpt-4o-mini", max_tokens=300, temperature=0.1)
140
+ llm_chart = OpenAI(is_safe=False)
141
 
142
  def get_schema(_):
143
  schema_info = db.get_table_info() # This should be a string of your SQL schema