Companies
AI Models
Active Jobs
Benchmarks
Model Benchmark Comparison
Generated SQL
Loading…
Jobs by Company
Generated SQL
Loading…
Funding Landscape ($M USD)
Generated SQL
Loading…
Bias Score Overview
Generated SQL
Loading…
Find the Right AI for Your Task

Type what you want to do, or tap a category below.

Loading…
Recommended Models
SQL Query Used

      
AI Models Tap any row for details
Generated SQL
Run a query to see SQL…
ModelCompanyModality ParamsReleasedLink
Loading…
Benchmark Leaderboard
Generated SQL
Run a query to see SQL…
RankBenchmarkModelCompanyScoreDate
Loading…
Open-Source vs Proprietary Analysis
SQL (CASE WHEN conditional aggregation)
Click to run…
CategoryBenchmarkAvg OpenAvg Proprietary
AI Job Listings
Generated SQL
Run a query to see SQL…
CompanyTitleLocationTypeSalary
Salary Intelligence
SQL (Aggregate + NULLIF)
Click to run…
TierCompanyOpeningsAvg MidpointMax
AI Bias Evaluations
Generated SQL
Run a query to see SQL…
ModelCategoryScoreSeverityDate
Dynamic SQL Query Builder

Build custom queries. Columns are whitelisted server-side to prevent injection.

Generated SQL — exact query sent to MySQL
Configure filters above and click Run Query…
Results will appear here.
Insert New AI Model
SQL That Will Execute
INSERT INTO ai_model (company_id, model_name, modality, ...)
VALUES (?, ?, ?, ...)
Database Audit Trail

Every INSERT/UPDATE/DELETE is automatically recorded by MySQL AFTER triggers.

Trigger Definition
CREATE TRIGGER trg_model_audit_insert
AFTER INSERT ON ai_model FOR EACH ROW
BEGIN
    INSERT INTO audit_log (table_name, operation, record_id, summary)
    VALUES ('ai_model', 'INSERT', NEW.model_id,
            CONCAT('New model: ', NEW.model_name));
END;
Loading audit log…