Sql Helper
This Frappe app provides an AI-powered assistant to query your ERPNext data using natural language.
- Author: mosawy
- Repository: https://github.com/mosawy/SQL-Helper
- GitHub stars: 0
- Forks: 0
- License: MIT
- Category: Developer Tools
- Maintenance: Unmaintained
- Frappe versions: develop
Install Sql Helper
bench get-app https://github.com/mosawy/SQL-Helper
Add the Frappe Gems badge to your README
Maintain Sql Helper? Paste this into your README:
[](https://frappegems.com/gems/apps/mosawy/SQL-Helper)
About Sql Helper
SQL Helper - ERPNext AI Assistant
This Frappe app provides an AI-powered assistant to query your ERPNext data using natural language.
Features (Implemented based on prompt)
- Natural Language Querying: Ask questions like "Show me customers from Germany" or "What was the total sales last month?".
- AI-Powered Translation: Uses the Google Gemini API to convert your questions into safe Frappe ORM queries (no raw SQL).
- DocType Selection: Choose the specific DocType you want to query.
- Document Context: Optionally provide a specific document name (e.g., "INV-001") for context.
- Results Display: View query results in a clear table.
- CSV Export: Export results to a CSV file.
- Chart Visualization: Visualize results using Bar, Pie, or Line charts (powered by Chart.js).
- Save & Load:
- Save frequently used queries.
- Save chart configurations.
- Load saved queries and charts (charts automatically refresh data).
- Saved items are user-specific (except for System Managers who can manage all).
- Admin Settings:
- Configure Google Gemini API Key and model.
- Enable/disable the assistant.
- Enable debug mode for logging.
- Security:
- Uses safe Frappe ORM methods (
get_all,db.get_list,qb). - Respects user permissions.
- Uses whitelisted methods for backend calls.
- Uses safe Frappe ORM methods (
Setup
- Install App:
bench get-app https://github.com/mosawy/SQL-Helper.git bench --site [your-site-name] install-app sql_helper - Install Dependencies:
# Ensure google-generativeai is installed in your bench environment # bench pip install google-generativeai - Configure Settings:
- Go to Desk -> SQL Helper -> Gemini Settings.
- Enable the assistant.
- Enter your Google Gemini API Key.
- Save the settings.
- Usage:
- Go to Desk -> SQL Helper -> AI Assistant Interface.
- Select a DocType, ask your question, and click "Run Query".
Development Notes
- This app was developed by the Manus AI Agent based on a detailed prompt.
- Requires Chart.js library. Ensure it is included in your Frappe build process if not already available (
bench buildmight handle this if properly configured, or add manually). - Permissions for saving queries/charts are currently restricted to System Manager. Modify
persistence.pyand DocType permissions if needed. - The list of queryable DocTypes in
schema_utils.pyis currently hardcoded; a dynamic, permission-aware list is recommended for production.
License
MIT
Related Developer Tools apps for Frappe & ERPNext
- Frappe — Low code web framework for real world applications, in Python and Javascript
- Frappe Docker — Docker environment for developing, deploying, and running Frappe applications (ERPNext and custom apps) in production and development
- Builder — Craft beautiful websites effortlessly with an intuitive visual builder and publish them instantly
- Bench — CLI to manage Multi-tenant deployments for Frappe apps
- Frappe Ui — A set of components and utilities for rapid UI development
- Press — Full service cloud hosting for the Frappe stack - powers Frappe Cloud
- Gameplan — Open Source Discussions Platform for Remote Teams
- Doppio — A Frappe app (CLI) to magically setup single page applications and Vue/React powered desk pages on your custom Frappe apps.