Loading...
Loading...
AI-powered lab automation. Connect instruments, chat with AI, get verified results. Zero configuration.
Connect instruments. Chat with AI. Get results. No configuration required.
Hardware, software, AI, and workflow documentation—all in one platform.
Raspberry Pi device that auto-detects instruments. Plug it in, instruments appear instantly. Works with USB, Ethernet, and serial connections.
Chat in plain English. AI writes code, runs experiments, fixes errors, and analyzes data. No programming required.
Every experiment recorded. Replay exactly to verify results or test changes. Like version control for measurements.
Cryptographically signed data, audit trails, and export documentation support for regulated laboratory workflows.
Manage multiple instruments. Role-based access. SSO integration. Custom drivers and extensions.
Open-source library for developers. Unified API for all instruments. Works with VSCode, Jupyter, and testing frameworks.
Six simple steps from setup to results.
Plug in LAMB bridge and instruments
Instruments auto-discovered
Chat with AI or write Python
Execute with live monitoring
Signed, replayable results
Export & collaborate
Every lab starts with different instruments, validation needs, and rollout constraints. Pick the conversation that matches your stage.
Map one bench or workflow and prove instrument connectivity.
Bring multiple instruments, operators, and shared methods into a reproducible workflow.
Plan auditability, hosting, access control, and validation for controlled environments.
PyTestLab: Open-source Python library for lab automation. Works with VSCode, Jupyter, and CI/CD.
# Install
pip install pytestlab[full]
# Hello PSU (simulated)
from pytestlab.instruments import AutoInstrument
psu = AutoInstrument.from_config("keysight/EDU36311A", simulate=True)
psu.connect_backend()
psu.channel(1).set(voltage=5.0, current_limit=0.2).on()
v = psu.channel(1).measure_voltage()
psu.channel(1).off()
psu.close()
print("Measured", v.values, "V")
LABIIUM is available for private pilot conversations. Contact us to see how AI-powered laboratory automation can support your workflow.