We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1e874b commit 15b8569Copy full SHA for 15b8569
backend/apps/chat/task/llm.py
@@ -332,7 +332,8 @@ def generate_recommend_questions_task(self):
332
self.chat_question.db_schema = self.out_ds_instance.get_db_schema(
333
self.ds.id) if self.out_ds_instance else get_table_schema(session=self.session,
334
current_user=self.current_user, ds=self.ds,
335
- question=self.chat_question.question)
+ question=self.chat_question.question,
336
+ embedding=False)
337
338
guess_msg: List[Union[BaseMessage, dict[str, Any]]] = []
339
guess_msg.append(SystemMessage(content=self.chat_question.guess_sys_question()))
0 commit comments