AI

Analytik

Reads experiment data, flags problems in the setup, and proposes follow-up experiments.

Next.jsTypeScriptTailwindGroqLlama

Analytik is a data analysis tool for wet labs and computational teams. You upload experiment data as CSV or JSON, an LLM analyzes it end to end, and you can chat with the analysis to poke at findings, question assumptions, or ask what to try next.

What it does

Every experiment gets broken into four sections:

Then a chat interface lets you ask about the analysis in plain language, things like “why did you flag that as a confounder?” or “what would falsify hypothesis 2?”.

Stack

Architecture

Two API routes do the work: POST /api/analyze runs the four-section breakdown on upload, and POST /api/chat handles conversation with the experiment as context. The React side is thin: a file upload component that analyzes and redirects, an analysis renderer, and a chat window that streams responses back into the same experiment record.