Datasets
SQL Notebook
Run SQL queries on your datasets
You can run SQL queries on your datasets to explore and analyze your data.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Run SQL queries on your datasets
-- Select all
select * from dataset;
-- Select all with filters
select * from dataset where "Response Faithfulness" > 0.9;
-- Get average eval score grouped by topic
select topic, avg("Factual Accuracy")
from dataset
group by topic;