Basics
Type a message in the chat input at the bottom of the panel. Qualia will:- Read your message and understand what you want
- Look at the current state of your notebook for context
- Write and execute code cells to accomplish your goal
- Show results (plots, tables, text) inline in the notebook
Starting from a path
The new chat screen offers three starting points that ask for a path first and then hand it to an agent:- Explore a dataset asks for a single data file, then profiles it and reports its grain, its quality problems, and the questions it can actually answer. It adapts to what the data is, so tabular, time series, text, image, geospatial, event-log, multi-table, and graph data each get their own checks.
- Learn an existing workflow asks for a file or a folder, then turns a process you already run into a reusable skill.
- Convert existing work into Qualia knowledge asks for a file or a folder, then turns past results into claims.
report.csv becomes report (1).csv), a folder whose name already exists merges into the existing folder, and common junk folders such as .git and node_modules are skipped.
Execution mode
Choose the default execution mode for new agents in Settings > General:- Notebook uses an attached notebook for interactive code, cells, and kernel-backed results.
- Script creates and runs standalone files in the workspace. It is suited to training, scraping, batch jobs, and other work that does not need notebook cells.
Basic things you can ask Qualia to do
Explore and clean data
- “Load sales_data.csv and show me the first 10 rows”
- “What’s the distribution of the price column? Show me a histogram”
- “Remove duplicates and fill missing values in the age column with the median”
- “Give me summary statistics grouped by region”
Build visualizations
- “Plot a scatter matrix of all numeric columns”
- “Show me daily revenue as a time series with a 7-day moving average”
- “Create a heatmap of the correlation matrix”
- “Make a bar chart comparing accuracy across the three models”
Train and evaluate models
- “Train a gradient boosted classifier on this data”
- “Compare random forest vs. logistic regression with 5-fold cross-validation”
- “Show me feature importances and the ROC curve”
- “Tune the learning rate and max depth using grid search”
Work with files and the shell
- “Install scikit-learn and xgboost”
- “What files are in the data/ directory?”
- “Run the preprocessing script at scripts/clean.py”
- “Search the codebase for where the model is saved”
Research and look things up
- “Search the web for the latest scikit-learn docs on HistGradientBoosting”
- “What’s the standard approach for handling class imbalance?”
Web search can be enabled in Settings > AI. When active, Qualia can look up documentation and references during your conversation.
More autonomous exploration
For open-ended research, give Qualia broader goals and let it explore:Dataset investigation
- “Explore this dataset thoroughly — check for anomalies, correlations, and anything interesting”
- “Find the best features for predicting churn and explain why they matter”
- “Investigate why the model performs poorly on certain segments”
Model development
- “Build the best classifier you can for this data — try multiple approaches and compare them”
- “This model is overfitting. Diagnose the problem and fix it”
- “Optimize this pipeline for inference speed without sacrificing too much accuracy”
Research questions
- “What’s causing the spike in errors after March 2024? Investigate and report back”
- “Find a good forecasting approach for this time series data”
- “Review this codebase and suggest performance improvements”
Attaching context
You can attach specific context to your messages so Qualia knows exactly what you’re referring to:- Cells: Select one or more notebook cells to include as context. Qualia sees both the code and its output.
- Files: Attach files and images from your filesystem for Qualia to read.
- Table selections: Select rows or columns from a data table and attach the selection.
- Images and regions: Click any image (a plot output, a chat image, a knowledge-graph figure) to open the image viewer, then attach the whole image — or drag-select a region and attach just that part.
Model selection
Choose which AI model powers your conversation:- Click the model name at the bottom of the chat box.
- Choose a Frontier model, or select All models to browse the full catalog.
- Use the search box to find any available model, including models outside the initial Frontier list.
- To change which model new chats start with, hover a model and choose Set default. The current default is marked Default.
Context window
The token usage indicator shows how much of the model’s context window you’re using. As your conversation grows longer, this fills up. If you hit the limit, your chat will be automatically summarized (compacted) and continued. However, the agent may lose access to fully detailed information from earlier in the conversation.Account usage limits
If your account reaches its monthly usage limit, Qualia stops the current request and shows a usage-limit message in chat. Use View pricing from that message to open Quadrillion pricing and choose a plan with higher limits.Research style
Adjust how Qualia approaches your requests (configurable in chat or as defaults in Settings):Curiosity
How much Qualia explores beyond your immediate request:- Low: Focused on exactly what you asked
- Medium: Explores related areas when relevant
- High: Actively investigates tangential questions
Independence
How much Qualia assumes versus asks:- Low: Asks for confirmation frequently
- Medium: Makes routine decisions, asks about significant ones
- High: Assumes most things, asks only about major choices
Parallelism
How much Qualia splits work across agents:- Low: Usually keeps work in one agent
- Medium: Delegates independent work when useful
- High: Proactively splits suitable work across multiple agents
Autonomous Mode
A separate toggle that overrides curiosity, independence, and parallelism. When on, Qualia runs fully autonomously with no confirmation dialogs — see Autonomous Mode.Code autocomplete
As you type in code cells, Qualia offers AI-powered autocomplete suggestions. These appear inline and you can accept them with Tab. Turn them on by setting the code completion mode to LM in Settings > Editor. Autocomplete uses the notebook context — nearby cells and their outputs — to make relevant suggestions. It requires a Quadrillion API key and is not available on BYOK deployments.Exporting a chat
Right-click a chat tab and choose Export to save the conversation as a Markdown (.md) file. The export contains the visible transcript — your messages and Qualia’s replies — so you can archive a conversation or share it outside the app.
Customization
Qualia’s behavior can be customized with:- Rules: Persistent instructions that apply to every conversation (e.g., “Always use polars instead of pandas”)
- Skills: Reusable workflows for specific tasks (e.g., “How to deploy to production”)

