bobbai00 opened a new issue, #4618: URL: https://github.com/apache/texera/issues/4618
### Task Summary The agent's `DEFAULT_AGENT_SETTINGS.allowedOperatorTypes` in `agent-service/src/types/agent.ts` only exposes a small subset of operators (`CSVFileScan`, `Sort`, `HashJoin`, `Limit`, `Projection`, `LineChart`, `BarChart`, `PythonUDFV2`), and includes a stale `TableLimit` entry that does not correspond to any `LogicalOp` subtype in `common/workflow-operator/src/main/scala/.../LogicalOp.scala`. This restricts the agent's ability to plan typical ETL and visualization workflows (e.g. filtering, aggregating, deduplicating, plotting distributions or word clouds). Expand the default allow-list to cover the common ETL transforms (Filter, TypeCasting, Distinct, Union, KeywordSearch, Aggregate) and the standard visualizations (PieChart, Histogram, Scatterplot, WordCloud), and drop the invalid `TableLimit`. All names must match the `@JsonSubTypes` discriminator names declared on `LogicalOp`. ### Priority P2 – Medium ### Task Type - [x] Code Implementation -- 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]
