Ask what. Get answers. RITA turns a natural-language question into SQL, statistics, and insights β no code required.
Go beyond simple text-to-SQL. Ask RITA is an LLM-powered analytics framework that generates queries, runs scipy-backed statistical tests, conducts CRISP-DM research workflows, classifies data, and visualizes results β across SQL and NoSQL databases β from a single natural-language question.
π IMPORTANT β Read-Only Database Access Required
AskRITA generates and executes SQL/NoSQL queries against your database. LLM-generated queries are inherently unpredictable. To prevent inadvertent writes, deletes, or schema changes:
- Always connect with a read-only database user. Grant only
SELECT(SQL) orfind/aggregate(MongoDB) permissions. Never use credentials withINSERT,UPDATE,DELETE,DROP, or DDL privileges.- Do not rely on application-level safeguards alone. AskRITA includes prompt-injection detection and blocks known destructive patterns, but these are defence-in-depth measures β not substitutes for proper database permissions.
- Store credentials in environment variables (
${DB_USER},${DB_PASSWORD}), never in config files. See Configuration Guide.The database user's granted permissions are the only reliable boundary between AskRITA and your data.
- π£οΈ Natural Language to SQL - Ask questions in plain English
- π¬ Conversational Queries - Follow-up questions with context awareness
- ποΈ Multi-Database Support - PostgreSQL, MySQL, SQLite, SQL Server, BigQuery, Snowflake, IBM Db2
- π Smart Visualization - Automatic chart recommendations
- π Error Recovery - Automatic SQL retry with error feedback
- π£οΈ Natural Language to MongoDB - Ask questions, get aggregation pipelines
- π MongoDB Support -
mongodb://andmongodb+srv://(Atlas) connections - π‘οΈ Safety Validation - Blocks destructive operations, read-only analytics
- π Full Feature Parity - PII detection, visualization, follow-up questions, Chain-of-Thoughts
- π CRISP-DM Methodology - Complete 6-phase data science workflow
- π§ͺ Hypothesis Testing - Automated research question formulation and testing
- π Real Statistics - scipy-powered t-tests, ANOVA, correlation, chi-square (not LLM-generated!)
- π Effect Sizes - Cohen's d, Ξ·Β², CramΓ©r's V with automatic interpretation
- π― Actionable Insights - Data-driven recommendations with confidence levels
- πΌοΈ Image Classification - AI extracts data directly from images (medical bills, invoices, documents)
- π Excel/CSV Processing - Process large datasets with AI classification
- π API-First Design - Perfect for microservices with dynamic field definitions per request
- π§ Multi-Tenant Support - Different schemas per customer/organization without server restarts
BIRD Mini-Dev text-to-SQL execution accuracy (EX) across 500 questions, with oracle knowledge (evidence) enabled.
| Model | Overall | Simple (148) | Moderate (250) | Challenging (102) |
|---|---|---|---|---|
| Gemini 2.5 Pro | 64.4% | 77.0% | 61.2% | 53.9% |
| Gemini 2.5 Flash | 60.6% | 76.3% | 53.6% | 54.9% |
| GPT-5.4 | 54.8% | 68.9% | 50.8% | 44.1% |
| GPT-5.4 Mini | 53.2% | 70.3% | 49.6% | 37.2% |
| GPT-5.4 Nano | 40.0% | 53.4% | 36.0% | 30.4% |
| Gemini 2.5 Flash-Lite | 39.4% | 56.1% | 33.2% | 30.4% |
- π€ Multi-Cloud LLM Integration - OpenAI, Azure, Google Cloud Vertex AI, AWS Bedrock
- βοΈ Configurable Workflows - Enable/disable steps, customize prompts, enhanced security options
- π Enterprise Security - Credential management, access controls, audit logging
- π‘οΈ PII/PHI Detection - Automatic privacy protection with Microsoft Presidio analyzer
- ποΈ Production Ready - Design pattern architecture, comprehensive logging, error handling, monitoring
- π Advanced BigQuery - Cross-project dataset access, 3-step validation, configurable access patterns
- π Token Management - Built-in token utilities for cost optimization and LLM efficiency
- π§ͺ Extensive Testing - Full test suite with quality assurance tools (550+ tests passing)
- π Type-Safe Integration - Exported Pydantic models for seamless downstream application integration
pip install askritaπ More options: Installation Guide β pip, Poetry, from-source, development setup
export OPENAI_API_KEY="your-api-key-here"
cp example-configs/query-openai.yaml my-config.yamlβοΈ Full reference: Configuration Guide
from askrita import SQLAgentWorkflow, ConfigManager
config = ConfigManager("my-config.yaml")
workflow = SQLAgentWorkflow(config)
result = workflow.query("What are the top 10 customers by revenue?")
print(result['answer'])from askrita import NoSQLAgentWorkflow, ConfigManager
config = ConfigManager("mongodb-config.yaml")
workflow = NoSQLAgentWorkflow(config)
result = workflow.query("How many orders were placed last month?")
print(result.answer)from askrita import ConfigManager
from askrita.research import ResearchAgent
config = ConfigManager("my-config.yaml")
research = ResearchAgent(config)
result = research.test_hypothesis(
research_question="How does customer satisfaction differ across business lines?",
hypothesis="Medicare members have higher NPS scores than Commercial members"
)
print(f"Conclusion: {result['conclusion']}") # SUPPORTED, REFUTED, or INCONCLUSIVE
print(f"P-value: {result['key_metrics'].get('p_value')}") # Real scipy computationπ All examples: Usage Examples & API Reference β conversational queries, data classification, exports, CLI, result format
from askrita import (
SQLAgentWorkflow, ConfigManager,
UniversalChartData, ChartDataset, DataPoint, WorkflowState
)
result: WorkflowState = workflow.query("Show me sales by region")
chart = UniversalChartData(**result['chart_data'])Databases: PostgreSQL, MySQL, SQLite, SQL Server, BigQuery, Snowflake, IBM DB2, MongoDB
LLM Providers: OpenAI, Azure OpenAI, Google Cloud Vertex AI, AWS Bedrock
π Connection strings, auth details, config templates: Supported Platforms
| Component | Required | Description |
|---|---|---|
| π LLM | β Yes | Provider, model + env variables |
| ποΈ Database | β Yes | Connection string |
| π Prompts | β Yes | All 5 workflow prompts |
export OPENAI_API_KEY="your-api-key-here"
cp example-configs/query-openai.yaml my-config.yamlexample-configs/query-openai.yaml # OpenAI + PostgreSQL
example-configs/query-azure-openai.yaml # Azure OpenAI
example-configs/query-snowflake.yaml # Snowflake database
example-configs/query-mongodb.yaml # MongoDB (NoSQL)
example-configs/example-zscaler-config.yaml # Corporate proxy setup
example-configs/data-classification-*.yaml # Data processing workflowsπ Complete reference: Configuration Guide
llm:
ca_bundle_path: "./credentials/zscaler-ca.pem"π Full guide: CA Bundle Setup
{
"mcpServers": {
"askrita": {
"command": "askrita",
"args": ["mcp", "--config", "/path/to/your/config.yaml"]
}
}
}π Setup guide: Claude Desktop Setup
git clone https://github.com/cvs-health/askRITA.git
cd askRITA
pip install poetry && poetry installpoetry run pytest # Tests
poetry run black askrita/ # Format
poetry run flake8 askrita/ # Lint
poetry run mypy askrita/ # Type check| Guide | Description |
|---|---|
| Installation | pip, Poetry, from-source, development setup |
| Configuration | YAML configuration β database, LLM, prompts, PII, security |
| Usage Examples & API | Code examples, CLI, API reference, result format |
| Supported Platforms | Databases, LLM providers, connection strings, auth |
| SQL Workflow | Core text-to-SQL workflow β query, chat, export, schema |
| Conversational SQL | Multi-turn chat mode, follow-up questions, clarification |
| Research Workflow | CRISP-DM hypothesis testing with scipy statistics |
| Data Classification | LLM-powered classification of CSV/Excel with dynamic schemas |
| NoSQL Workflow | MongoDB workflow setup and usage |
| Export (PPTX, PDF, Excel) | Export query results to branded reports and spreadsheets |
| Security | SQL safety, prompt injection detection, PII/PHI scanning |
| Schema Enrichment | Schema caching, descriptions, decorators, cross-project access |
| Chain of Thoughts | Step-by-step reasoning traces and progress callbacks |
| CLI Reference | askrita command β query, interactive, test, mcp |
| MCP Server | Model Context Protocol server setup |
| Claude Desktop Setup | MCP integration with Claude Desktop |
| CA Bundle Setup | Certificate authority configuration |
| Benchmark Results | BIRD Mini-Dev model comparison and per-model analysis |
| Chart Types | Google Charts β 13 chart types, React & Angular guides |
| Contributing | Dev setup, branching, pull requests, code quality |
| Versioning & Releases | Semantic versioning, version bump scripts, release checklist |
| Docker Testing | Cross-version compatibility testing in isolated environments |
| Changelog | Version history and updates |
π Complete index: Documentation Site
Apache License 2.0 - see LICENSE file for details.
