Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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
|