vanna-ai / vanna

🤖 Chat with your SQL database 📊. Accurate Text-to-SQL Generation via LLMs using RAG 🔄.

Home Page:https://vanna.ai/docs/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Error in add_question_sql in Qdrant

zainhoda opened this issue · comments

question_answer = format("Question: {0}\n\nSQL: {1}", question, sql)

This line should be:

question_answer = "Question: {0}\n\nSQL: {1}".format(question, sql)