Zzm0809 / supersonic

SuperSonic is the next-generation LLM-powered data analytics platform that integrates ChatBI and HeadlessBI

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

中文介绍 | 文档中心

Java CI

SuperSonic (超音数)

SuperSonic is the next-generation LLM-powered data analytics platform that integrates ChatBI and HeadlessBI. SuperSonic provides a chat interface that empowers users to query data using natural language and visualize the results with suitable charts. To enable such experience, the only thing necessary is to build logical semantic models (definition of entities/metrics/dimensions/tags, along with their meaning, context and relationships) on top of physical data models, and no data modification or copying is required. Meanwhile, SuperSonic is designed to be highly extensible, allowing custom functionalities to be added and configured with Java SPI.

Motivation

The emergence of Large Language Model (LLM) like ChatGPT is reshaping the way information is retrieved. In the field of data analytics, both academia and industry are primarily focused on leveraging LLM to convert natural language into SQL (so called Text2SQL or NL2SQL). While some approaches exhibit promising results, their reliability and efficiency are insufficient for real-world applications.

From our perspective, the key to filling the real-world gap lies in three aspects:

  1. Integrate ChatBI with HeadlessBI encapsulating underlying data context (joins, keys, formulas, etc) to reduce complexity.
  2. Augment the LLM with schema mappers(as a kind of preprocessor) and semantic correctors(as a kind of postprocessor) to mitigate hallucination.
  3. Utilize rule-based schema parsers when necessary to improve efficiency(in terms of latency and cost).

With these ideas in mind, we develop SuperSonic as a practical reference implementation and use it to power our real-world products. Additionally, to facilitate further development of ChatBI, we decide to open source SuperSonic as an extensible framework.

Out-of-the-box Features

  • Built-in ChatBI interface for business users to enter natural language queries
  • Built-in HeadlessBI interface for analytics engineers to build semantic models
  • Built-in GUI for system administrators to manage chat agents and third-party plugins
  • Support input auto-completion as well as query recommendation
  • Support multi-turn conversation and history context management
  • Support four-level permission control: domain-level, model-level, column-level and row-level

Extensible Components

The high-level architecture and main process flow is as follows:

  • Knowledge Base: extracts schema information periodically from the semantic models and build dictionary and index to facilitate schema mapping.

  • Schema Mapper: identifies references to schema elements(metrics/dimensions/entities/values) in user queries. It matches the query text against the knowledge base.

  • Semantic Parser: understands user queries and extracts semantic information. It consists of a combination of rule-based and model-based parsers, each of which deals with specific scenarios.

  • Semantic Corrector: checks validity of extracted semantic information and performs correction and optimization if needed.

  • Semantic Interpreter: performs execution according to extracted semantic information. It generates SQL statements and executes them against physical data models.

  • Chat Plugin: extends functionality with third-party tools. The LLM is going to select the most suitable one, given all configured plugins with function description and sample questions.

Quick Demo

SuperSonic comes with sample semantic models as well as chat conversations that can be used as a starting point. Please follow the steps:

  • Download the latest prebuilt binary from the release page
  • Run script "assembly/bin/supersonic-daemon.sh start" to start a standalone Java service
  • Visit http://localhost:9080 in the browser to start exploration

Build and Development

Please refer to project wiki.

WeChat Contact

Please follow SuperSonic wechat official account:

About

SuperSonic is the next-generation LLM-powered data analytics platform that integrates ChatBI and HeadlessBI

License:Other


Languages

Language:Java 58.7%Language:TypeScript 25.4%Language:Less 7.1%Language:Python 5.2%Language:JavaScript 1.7%Language:CSS 1.3%Language:Shell 0.3%Language:Batchfile 0.2%Language:HTML 0.0%Language:EJS 0.0%Language:Dockerfile 0.0%