This project enables users to interact with SQL databases through natural language queries. Leveraging the capabilities of LangChain and the Groq API, it provides an intuitive interface built with Streamlit, supporting both SQLite and MySQL databases.
student.db
) for quick setup and testing.Follow these steps to set up the project locally:
git clone https://github.com/Rohit-Madhesiya/Chat-with-SQL-DB-using-Groq.git
cd Chat-with-SQL-DB-using-Groq
pip install -r requirements.txt
student.db
) is included. No additional setup is required.Provide instructions on how to use the application.
Launch the Application:
streamlit run app.py
Select Database Type:
SQLite
or MySQL
in the sidebar.Configure Database Connection:
student.db
is in the project directory.Interact with the Chat Interface:
SELECT * FROM students WHERE major = 'Computer Science';
SELECT AVG(gpa) FROM students;
Chat-with-SQL-DB-using-Groq/ ā āāā app.py # Main application file āāā requirements.txt # List of Python dependencies āāā student.db # Sample SQLite database āāā README.md # Project documentation āāā .github/ āāā workflows/ āāā python-app.yml # GitHub Actions workflow
Python Packages:
streamlit
langchain
mysql-connector-python
sqlite3
(included in Python's standard library)External Services:
Contributions are welcome! To contribute:
Fork the repository.
Create a new branch:
git checkout -b feature-name
Make your changes and commit them:
git commit -m 'Add new feature'
Push to the branch:
git push origin feature-name
Submit a pull request.
There are no datasets linked
There are no datasets linked