I3eka commented on code in PR #43135: URL: https://github.com/apache/superset/pull/43135#discussion_r3818943537
########## superset/ai/runtime/messages.py: ########## @@ -0,0 +1,577 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +""" +The default runtime: a plain tool-use loop over the provider's message API. + +Chosen as the default because it needs nothing beyond an HTTP call — no agent +engine subprocess, no working directory, no bundled binary — so it works with +whatever provider a deployment configures. +""" + +from __future__ import annotations + +import logging +import time +from collections.abc import AsyncIterator +from typing import Any + +from superset.ai.events import ( + assistant_delta_event, + checkpoint_event, + error_event, + final_event, + GENERIC_ERROR_MESSAGE, + StreamEvent, + thinking_event, + thoughts_event, +) +from superset.ai.llm.base import ( + CompletionRequest, + LLMError, + LLMResponse, + Message, + StreamEventKind, + ToolCall, + ToolResult, +) +from superset.ai.runtime.base import BaseAgentRuntime, RunRequest, RunResult +from superset.ai.telemetry import ( + current_run, + POLICY_DENIED, + RunRecorder, + TOOL_UNAVAILABLE, +) +from superset.ai.types import MessageRole, ProgressStage, TokenUsage + +logger = logging.getLogger(__name__) + +#: How much of a tool's output is kept on the persisted message. The model +#: still sees the whole thing; this is the audit copy. +_RECORDED_OUTPUT_LIMIT = 2_000 + +#: Size of the chunks the finished answer is delivered in. +_DELIVERY_CHUNK_SIZE = 512 + +#: How much reasoning is kept on the result. Reasoning can run several times +#: longer than the answer, and this is persisted next to it. +_RECORDED_THOUGHTS_LIMIT = 8_000 + +_NO_ANSWER = ( + "I wasn't able to reach an answer for that. Try narrowing the question, " + "or naming the dataset you have in mind." +) + + +class MessagesApiRuntime(BaseAgentRuntime): + """ + Alternates model calls and tool calls until the model stops asking. + + Two behaviours are worth understanding before changing this class. + + First, prose the model emits *before* a tool call is treated as reasoning, + not answer: it becomes a ``thoughts`` event and is dropped from the answer. + A model narrating "the orders table looks right, let me check" is stating a + hypothesis it may abandon, and appending that to the answer produces a + reply that contradicts itself. + + Second, the loop always terminates and never raises for an operational + failure. By the time it runs, response headers have been flushed and an + exception can no longer become an HTTP status, so every failure is an event. + """ + + def __init__(self, provider: Any) -> None: + super().__init__(provider) + self._result = RunResult() + #: Set when the model signals it has finished answering. + self._finished = False + #: The most recent round trip's response, or ``None`` if it failed. The + #: turn methods are generators and cannot return a value. + self._last_response: LLMResponse | None = None + #: Whether any answer text has already been sent as it was generated. The + #: finished answer is only replayed in chunks when it has not. + self._streamed_text = False + + @property + def result(self) -> RunResult: + return self._result + + async def run(self, request: RunRequest) -> AsyncIterator[StreamEvent]: + self._result = RunResult() + self._finished = False + self._last_response = None + self._streamed_text = False + answer_parts: list[str] = [] + + yield thinking_event(ProgressStage.START, "Working on your question") + + # The provider's connection pool belongs to the loop this run is driven + # on, and the caller closes that loop as soon as the run ends. Closing + # here — inside the loop, however the run finishes, including when the + # generator is abandoned mid-way by a user pressing stop — is what keeps + # a client from being finalised against a dead loop. + try: + async for event in self._turn_loop(request, answer_parts): + yield event + + # A run that failed or was abandoned has already said so; emitting an + # answer as well would contradict it. + if self._result.error is not None or self._result.cancelled: + return + + answer = "\n\n".join(part for part in answer_parts if part).strip() + self._result.answer = answer or _NO_ANSWER + + # Only replayed when nothing was streamed — a provider without + # streaming support still gets to deliver its answer progressively. + # Replaying after live text would show the answer twice. + if not self._streamed_text: + for chunk in _chunk(self._result.answer): + yield assistant_delta_event(chunk) + yield final_event(self._result.answer) + finally: + await self.provider.aclose() + + async def _turn_loop( + self, + request: RunRequest, + answer_parts: list[str], + ) -> AsyncIterator[StreamEvent]: + """ + Alternate model and tool calls until the model stops or a budget runs out. + + Appends to ``answer_parts`` rather than returning the answer, because an + async generator cannot both yield events and return a value. + """ + deadline = time.monotonic() + request.timeout_seconds + conversation = list(request.messages) + + for turn in range(1, request.max_turns + 1): + self._result.turns = turn + + if self._should_stop(request, deadline): + if self._result.timed_out: + yield thinking_event( + ProgressStage.FALLBACK, + "Taking longer than expected — answering with what I have", + ) + return + + async for event in self._safe_turn(request, conversation, turn): + yield event + response = self._last_response + if response is None: + yield error_event() + return + + async for event in self._consume( + request, response, conversation, answer_parts + ): + yield event + + if self._finished or self._result.cancelled: + return + + # Budget exhausted without the model choosing to stop. Review Comment: Fixed in bd998c21d0. If provisional text was streamed before an error or cancellation, the backend emits an authoritative final replacement and the client replaces the live delta instead of keeping it. Backend and frontend regressions cover this. ########## superset/config.py: ########## @@ -2897,6 +2913,326 @@ def EMAIL_HEADER_MUTATOR( # pylint: disable=invalid-name,unused-argument # noq "CACHE_REDIS_SSL_CA_CERTS": None, } +# --------------------------------------------------------- +# AI assistant +# --------------------------------------------------------- +# Requires the AI_ASSISTANT feature flag. Superset ships no model provider and +# talks to no model vendor by default: until AI_LLM_PROVIDER_CLASS names a +# usable provider the assistant's endpoints return 404. +# +# Dotted path to a superset.ai.llm.base.BaseLLMProvider subclass. Point this at +# a vendor provider, an OpenAI-compatible endpoint, a self-hosted model, or a +# private gateway. Everything vendor-specific — base URLs, authentication, +# model naming — belongs in the provider, not here. +AI_LLM_PROVIDER_CLASS: str | None = None + +# Keyword arguments passed to the provider's constructor. Contents are entirely +# provider-defined. Keep credentials out of this file: read them from the +# environment or a secret store in your own config. +# +# AI_LLM_PROVIDER_CONFIG = { +# "api_key": os.environ["MY_LLM_API_KEY"], +# "base_url": "https://llm.internal.example.com/v1", +# "models": { +# "default": "some-balanced-model", +# "fast": "some-small-model", +# "reasoning": "some-large-model", +# }, +# } +AI_LLM_PROVIDER_CONFIG: dict[str, Any] = {} + +# Dotted path to a superset.ai.runtime.base.BaseAgentRuntime subclass driving +# the tool-use loop. +AI_AGENT_RUNTIME_CLASS = "superset.ai.runtime.messages.MessagesApiRuntime" + +# Where a turn is executed. +# +# "inline" — in the web worker handling the request. No extra infrastructure, +# but a turn occupies a worker for its whole duration. +# "worker" — handed to Celery; the request streams events from the event bus. +# Survives a browser reconnect and keeps web workers free, at the +# cost of requiring Celery and a shared event bus. +AI_ASSISTANT_EXECUTION_MODE: Literal["inline", "worker"] = "inline" + +# How streamed events travel from producer to the HTTP response. +# +# "memory" — an in-process queue. Correct only when the producer and the +# streaming request are the same process, i.e. inline execution. +# "redis" — Redis streams, via the same cache backend the async-query +# channel uses. Required for "worker" execution mode. +AI_ASSISTANT_EVENT_BUS: Literal["memory", "redis"] = "memory" + +# Redis connection for the AI event bus. Required when AI_ASSISTANT_EVENT_BUS is +# "redis". Streams need commands the general-purpose cache client does not +# expose, so this is configured separately rather than borrowed from +# CACHE_CONFIG. The accepted shape matches +# GLOBAL_ASYNC_QUERIES_CACHE_BACKEND; point both at the same Redis if you like. +AI_ASSISTANT_EVENT_BUS_CACHE_CONFIG: dict[str, Any] = { + "CACHE_TYPE": "RedisCache", + "CACHE_REDIS_HOST": "localhost", + "CACHE_REDIS_PORT": 6379, + "CACHE_REDIS_USER": "", + "CACHE_REDIS_PASSWORD": "", + "CACHE_REDIS_DB": 0, + "CACHE_DEFAULT_TIMEOUT": 300, + "CACHE_REDIS_SSL": False, +} + +# Key prefix for AI event streams when the Redis bus is in use. +AI_ASSISTANT_EVENT_STREAM_PREFIX = "ai-events-" + +# How long a run's event stream is retained, in seconds. Bounds how late a +# reconnecting browser can still pick up a run it lost. +AI_ASSISTANT_EVENT_TTL_SECONDS = 900 + +# Named agent profiles, merged over the built-ins by key. Each value is a dict +# of fields to override, so narrowing one profile does not mean restating the +# rest. The most important field is "tools": which tools that profile may +# invoke. An unknown tool name is a startup error, not a silent omission. +# +# AI_AGENT_PROFILES = { +# # Take the shipped default but forbid raw SQL. +# "default": {"tools": ["search_assets", "get_schema"]}, +# # Let the analyst profile think harder and longer. +# "analyst": {"model_alias": "reasoning", "max_turns": 60}, +# # Add a profile only some users may select. +# "deep": { +# "name": "Deep analysis", +# "tools": ["search_assets", "get_schema", "execute_sql"], +# "required_permission": ("can_write", "AIAssistant"), +# }, +# } +AI_AGENT_PROFILES: dict[str, Any] = {} + +# Ceiling on model round trips in a single turn. A turn that needs more than +# this is answered with what it has rather than looping indefinitely. +AI_AGENT_MAX_TURNS = 20 + +# Wall-clock budget for one turn, in seconds. +AI_AGENT_TIMEOUT_SECONDS = 300 + +# Pre-tool-use guards, applied in order. Each is a dotted path to a +# superset.ai.policy.ToolPolicy implementation. These bound blast radius; they +# do not replace the per-object authorization checks inside each tool. +AI_AGENT_TOOL_POLICIES: list[str] = [ + "superset.ai.policy.ReadOnlySqlPolicy", + "superset.ai.policy.IdentifierPolicy", + "superset.ai.policy.ForeignToolPolicy", +] + +# Rows and bytes a single tool result may return before it is truncated. +# Model context is finite, and an unbounded result set exhausts it. +AI_AGENT_MAX_RESULT_ROWS = 500 +AI_AGENT_MAX_RESULT_BYTES = 256 * 1024 + +# External MCP servers whose tools may be offered to an agent profile. Superset +# ships none and integrates with no third-party service: with this empty, nothing +# in superset.ai.mcp is ever reached and the assistant behaves exactly as it does +# without it. +# +# A server listed here is only *available*. It is used by an agent profile that +# names it in its "mcp_servers" field, via AI_AGENT_PROFILES. A profile naming a +# server that is not configured here is an error, not a silently shorter tool +# list. +# +# AI_AGENT_MCP_SERVERS = { +# # The key is the server name. It becomes part of every tool name this +# # server contributes, so keep it short: letters, digits, hyphens and +# # underscores, and no double underscore. +# "acme_catalog": { +# # Required. Absolute http:// or https:// endpoint. +# "url": "https://mcp.acme.internal/mcp", +# # "streamable_http" (default) or "sse". +# "transport": "streamable_http", +# # The ONLY headers sent to this server. Superset never forwards the +# # user's session cookie, CSRF token or any Superset auth header: an +# # external server is not a party to the user's Superset session. +# # Read secrets from the environment rather than writing them here. +# "headers": {"Authorization": f"Bearer {os.environ['ACME_MCP_TOKEN']}"}, +# # Per-call budget. Bounds how long one call may occupy the worker +# # running the turn. Defaults to 30. +# "timeout_seconds": 30, +# # Which of the server's tools to take. Absent or None means every +# # tool it offers, which lets the server decide what the agent can do. +# # Either the server's own name ("search_tables") or the namespaced +# # name Superset assigns ("mcp__acme_catalog__search_tables") matches. +# "tool_allowlist": ["search_tables"], +# # Refused regardless of the allowlist. +# "tool_denylist": [], +# }, +# } +# +# AI_AGENT_PROFILES = { +# "default": {"mcp_servers": ["acme_catalog"]}, +# } +# +# Every tool from a server is namespaced "mcp__<server>__<tool>". The namespace is +# stable, appears in stored conversation history, and is what makes it impossible +# for a server offering "execute_sql" to displace Superset's own tool of that +# name. Foreign results pass through the same AI_AGENT_MAX_RESULT_BYTES bound and +# the same AI_AGENT_TOOL_POLICIES chain as built-in ones, and are wrapped as +# untrusted content before the model sees them. +# +# A server that is unreachable, slow or unreadable contributes no tools and the +# agent keeps working with the built-ins. Discovery happens while assembling the +# registry for a turn, so a slow server costs up to its timeout at the start of +# each turn that uses it. +# +# Requires the 'mcp' package; it is imported only once a server is configured. +AI_AGENT_MCP_SERVERS: dict[str, Any] = {} + +# Refuse any external MCP tool whose name advertises SQL execution — anything +# containing "execute_sql", "run_sql" or "query" by default. Enforced by +# superset.ai.policy.ForeignToolPolicy. +# +# On by default because Superset's read-only enforcement and its per-datasource +# authorization can only apply to SQL Superset itself runs. A third-party server +# executing SQL goes through neither, so permitting it silently removes both +# controls rather than merely widening the surface. Set this False only if you +# have satisfied yourself that the servers you have configured enforce +# equivalent controls of their own. +AI_AGENT_MCP_DENY_FOREIGN_SQL = True + +# Conversation history sent to the model: the most recent N messages, further +# trimmed oldest-first until under the character budget. +AI_ASSISTANT_MAX_HISTORY_MESSAGES = 25 +AI_ASSISTANT_MAX_HISTORY_CHARS = 100_000 + +# Timezone for the authoritative date given to the model, so it never has to +# infer today's date or weekday. +AI_ASSISTANT_TIMEZONE = "UTC" + +# Days a conversation is retained. Pruning is performed by the Review Comment: Fixed in bd998c21d0. Added the registered ai.prune_conversations Celery task, default 03:30 beat entry, bulk feedback/message/thread deletion, configuration docs, and DAO/task tests. ########## docs/admin_docs/configuration/ai-assistant.mdx: ########## @@ -0,0 +1,489 @@ +--- +title: AI Assistant +hide_title: true +sidebar_position: 17 +version: 1 +--- + +# AI Assistant + +The AI Assistant is a conversational interface for exploring your data. A user +asks a question in plain language; the assistant finds relevant datasets, +inspects their schema, writes and runs read-only SQL, and answers with both the +result and the query it used. + +Superset ships **no model provider and talks to no model vendor by default**. +The feature is disabled, and even when enabled it returns `404` until you point +it at a provider you control. Nothing is sent anywhere until you configure it. + +## Enabling it + +Two things are required: the feature flag, and a provider. + +```python +# superset_config.py +FEATURE_FLAGS = { + "AI_ASSISTANT": True, +} + +AI_LLM_PROVIDER_CLASS = "superset.ai.llm.anthropic.AnthropicProvider" +AI_LLM_PROVIDER_CONFIG = { + "api_key": os.environ["ANTHROPIC_API_KEY"], + "models": { + "default": "claude-sonnet-4-5", + "fast": "claude-haiku-4-5", + "reasoning": "claude-opus-4-1", + }, +} +``` + +Install the matching extra: + +```bash +pip install "apache-superset[ai-anthropic]" # or [ai-openai] +``` + +Then run `superset init` so the assistant's permissions are created and assigned +to roles. Without this the endpoints return `403`. + +Conversations are stored in Superset's metadata database, so no extra +infrastructure is needed for the default configuration. + +### Which roles get access + +`superset init` grants `can_read`/`can_write` on `AIAssistant` to **Admin** and +**Alpha** only. "Write" here means writing one's own conversation — the +assistant's tools are read-only and it cannot create or modify assets. + +**Gamma does not get it by default.** The assistant runs queries and costs +money per question, so it is granted deliberately rather than inherited. To +give it to Gamma users, add `can_read`/`can_write` on `AIAssistant` to Gamma or +to a custom role. + +Every query the assistant runs is subject to the *user's own* database and +dataset permissions. It cannot read anything the person chatting with it could +not read themselves. + +Because it is not in Gamma, it is also not inherited by the Public role when +`PUBLIC_ROLE_LIKE = "Gamma"` — an anonymous visitor cannot reach the assistant +unless you grant it explicitly. + +## Choosing a provider + +`AI_LLM_PROVIDER_CLASS` is a dotted path to a +`superset.ai.llm.base.BaseLLMProvider` subclass. Two are bundled: + +| Class | Use for | +| --- | --- | +| `superset.ai.llm.anthropic.AnthropicProvider` | The Anthropic Messages API | +| `superset.ai.llm.openai_compatible.OpenAICompatibleProvider` | OpenAI, and anything exposing an OpenAI-compatible endpoint — vLLM, Ollama, a private gateway | + +`AI_LLM_PROVIDER_CONFIG` is passed to the provider's constructor and its +contents are provider-defined. For the OpenAI-compatible provider, `base_url` +points it anywhere: + +```python +AI_LLM_PROVIDER_CLASS = "superset.ai.llm.openai_compatible.OpenAICompatibleProvider" +AI_LLM_PROVIDER_CONFIG = { + "base_url": "https://llm.internal.example.com/v1", + "api_key": os.environ["MY_GATEWAY_KEY"], + "models": {"default": "our-hosted-model"}, +} +``` + +Everything vendor-specific — URLs, authentication, model naming — lives in the +provider. Superset core contains none of it, so a self-hosted model or a private +gateway needs configuration rather than a fork. + +### Model tiers and selection + +Profiles and prompts refer to capability *tiers* (`default`, `fast`, +`reasoning`), never to a vendor's model names. The provider maps tiers to +concrete models via the `models` dict. A tier you do not configure is an error +when requested, never a silent substitution — so cost and answer quality stay +attributable to the model actually used. + +Users may also pin a specific model per turn. Only models present in your +`models` mapping are accepted; anything else is rejected. + +## Agent profiles + +A profile bundles the decisions that differ between a quick answer and a careful +investigation: which tools are available, which model tier, and how many steps. +Two ship by default — `default` and `analyst`. + +**Which tools a model may invoke is a decision each deployment makes**, so +profiles are fully configurable. `AI_AGENT_PROFILES` maps a profile key to the +fields you want to override, leaving the rest alone: + +```python +AI_AGENT_PROFILES = { + # Let the assistant search and inspect, but never run SQL. + "default": {"tools": ["search_assets", "list_databases", "get_schema"]}, + + # Let the analyst profile think harder and longer. + "analyst": {"model_alias": "reasoning", "max_turns": 60}, + + # Add a profile only some users may select. + "deep": { + "name": "Deep analysis", + "description": "Slow, thorough, multi-step.", + "tools": ["search_assets", "get_schema", "execute_sql"], + "required_permission": ("can_write", "AIAssistant"), + }, +} +``` + +A tool name that does not exist is an error naming the typo and listing the +valid names, rather than an assistant that quietly lacks a capability. An empty +`tools` list is valid and means conversation with no data access. + +`required_permission` is enforced on both the listing *and* the run path, so a +profile a user cannot see is also one they cannot invoke by posting its key. + +### Available tools + +| Tool | What it does | +| --- | --- | +| `search_assets` | Finds datasets, charts and dashboards the user can see | +| `list_databases` | Lists database connections exposed to SQL Lab | +| `get_schema` | Lists schemas, tables and columns | +| `execute_sql` | Runs a **read-only** query | +| `validate_sql` | Checks a query without running it | +| `get_chart_context` | Reads a chart's definition | +| `get_dashboard_context` | Reads a dashboard's definition | + +## Customising the prompt + +Three levers, in increasing order of bluntness. + +**Add to it.** `AI_EXTRA_PROMPT_SECTIONS` appends your own sections. This is +where deployment-specific knowledge belongs — your table conventions, your +warehouse's dialect quirks, how your business defines a metric. The shipped +prompt is deliberately generic and mentions no particular database engine. + +**Remove from it.** `AI_DISABLED_PROMPT_SECTIONS` drops a shipped section by +key, for when you disagree with one. The safety section cannot be disabled. + +**Replace it.** `AI_SYSTEM_PROMPT` substitutes the whole thing. + +:::warning +Setting `AI_SYSTEM_PROMPT` discards the shipped safety and prompt-injection +rules along with everything else. Your deployment then owns them. +::: + +`AI_SYSTEM_PROMPT_MUTATOR` is a last-mile callable applied after assembly, +mirroring `SQL_QUERY_MUTATOR`. + +## Where turns execute + +`AI_ASSISTANT_EXECUTION_MODE` decides where the work happens. + +**`"inline"`** (default) runs the turn in the web process. Nothing extra to +deploy. + +**`"worker"`** hands it to Celery. Web workers stay free, and a browser that +loses its connection can rejoin a run in progress. It requires Celery and a +Redis event bus: + +```python +AI_ASSISTANT_EXECUTION_MODE = "worker" +AI_ASSISTANT_EVENT_BUS = "redis" +AI_ASSISTANT_EVENT_BUS_CACHE_CONFIG = { + "CACHE_TYPE": "RedisCache", + "CACHE_REDIS_HOST": "redis", + "CACHE_REDIS_PORT": 6379, + "CACHE_REDIS_DB": 0, +} + +class CeleryConfig: + imports = ( + # ... your existing imports ... + "superset.ai.tasks", + ) +``` + +Streams need Redis commands the general-purpose cache client does not expose, +which is why the bus is configured separately rather than reusing `CACHE_CONFIG`. + +Selecting `"worker"` with the in-memory event bus raises rather than leaving +every stream silently empty, and so does selecting the Redis bus without a +usable connection. + +A turn is deliberately **not** retried after a worker crash: inference costs +money, and re-running a turn the user may already have partly seen would charge +twice. The message records that it failed and the user can ask again. + +## Safety and limits + +Guards are applied before any tool runs, configured via +`AI_AGENT_TOOL_POLICIES`: + +- **Read-only SQL.** Enforced using Superset's own SQL parser, not pattern + matching — so a write hidden behind a comment, a CTE, a second statement, or + an unparseable construct is refused. `EXPLAIN`, `SHOW` and `DESCRIBE` are + permitted; everything the parser cannot vouch for is not. +- **Identifier safety.** Table and column names are resolved against metadata + the user may see rather than interpolated into SQL. + +These bound blast radius; they do not replace authorization. Every tool that +touches a data-bearing object performs the same permission check the REST API +does. + +Result sizes are capped by `AI_AGENT_MAX_RESULT_ROWS` and +`AI_AGENT_MAX_RESULT_BYTES`, and truncation is reported rather than hidden. Turn +length is bounded by `AI_AGENT_MAX_TURNS` and `AI_AGENT_TIMEOUT_SECONDS`; a run Review Comment: Fixed in bd998c21d0. Docs and config comments now distinguish timeout behavior from max-turn exhaustion: timeout may preserve an available answer, while max turns remains an incomplete error and provisional narration is excluded. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
