Brain
We will open the download next month (Sep 15th).
- plugin architecture for AI chemistry models,
- Gen3 (Deep Learning), and Gen4 (LLMs) … Gen2 (stochatic/scikit) is in DSAI Agent
- including AIMNet2, Microsoft MatterSim and MatterGen, IBM FM2M
- a base model interface for custom models (enterprise only)
- and a model router for intelligent request routing and load balancing.
Updates FastAPI endpoints to support multiple models, health checks, and model listing, enabling extensible, multi-model molecular prediction and materials Q&A capabilities.
A server software to install
Pricing, Download and install
Only avaliable as subscription for local install / self hosting (private cloud)
Free / Academic
Universities, startups
Full model suite (ORB, AIMNet2, MatterSim, FM2M, MatterGen)
No CUDA, no LLM trainig
SME
Research groups, corporate R&D teams
Balanced plan for most industrial users.
Contains CUDA and LLM training, and full model suite (ORB, AIMNet2, MatterSim, FM2M, MatterGen)
Enterprise
Large pharma, materials companies, HPC centers
- Unlimited model mounts
- Custom plugins
- Dedicated support
- Site license
Example

- Models. AIMNet2 (molecular QC), FM2M (materials knowledge), MatterSim (crystal simulation), MatterGen (crystal generation).
- Health/monitoring.
/health
,/models
,/models/status
,/ray/deployments
. - Functional tests.
- AIMNet2: H₂, H₂O, CH₄ geometry inquiries; aspirin probe.
- FM2M: graphene properties; LiFePO₄ vs LiCoO₂ comparison; Si semiconductor rationale; COX–aspirin interaction.
- MatterSim: Si diamond cell; graphite layers; perovskite band-structure toy cell.
- MatterGen: Ca₂N; SrTiO₃; Li₂MnO₃; pharmaceutical form of aspirin; MAPbI₃ variants.
- Pipelines: drug-discovery (aspirin); photovoltaic (perovskite).
- Performance. Five-step pseudo-MD trajectory (caffeine) through
/predict
. - Acceptance. Presence of
model_used
,prediction
; graceful degradations flagged as “expected limitation.”
# Test Case: Methane (CH4)
ch4_data = {
"data": {
"molecule_name": "CH4_methane",
"coordinates": [
[0.0, 0.0, 0.0], # C
[0.629, 0.629, 0.629], # H1
[-0.629, -0.629, 0.629], # H2
[-0.629, 0.629, -0.629], # H3
[0.629, -0.629, -0.629] # H4
],
"atomic_numbers": [6, 1, 1, 1, 1],
"charge": 0
}
}
response = self.session.post(
f"{BASE_URL}/predict/direct/aimnet2",
json=ch4_data
)
Results
- Auto-routing. Returned “No suitable model found for input type” as an expected limitation; counted as pass.
- Throughput (MD micro-benchmark). 5 steps: mean 18.1 ms (min 16.8, max 20.9 ms) ⇒ ~55 pred s⁻¹ effective.
- AIMNet2 single-shot latencies. H₂ 32.2 ms; H₂O 36.9 ms; CH₄ 39.0 ms; aspirin 37.7 ms.
- Knowledge/synthesis tasks. FM2M, MatterSim, MatterGen reported 0.0 ms (instrument precision/coarse logging; interpreted as <1 ms or cached).
- Pipelines.
- Drug-discovery (aspirin): QC ✓ (37.7 ms); COX interaction ✓ (<1 ms); crystal-form design ✓ (<1 ms).
- PV perovskite: materials survey ✓ (<1 ms); structure generation ✓ (<1 ms); electronic simulation ✓ (<1 ms).
Representative outcomes
Domain | Input / Task | Endpoint | Validation | Latency |
---|---|---|---|---|
Quantum chemistry | H₂, H₂O, CH₄ geometries | /predict/direct/aimnet2 | model_used=="aimnet2" ; prediction present | 32.2–39.0 ms |
Drug–target | Aspirin–COX query | /predict/direct/fm2m | prediction present | <1 ms* |
Crystal simulation | Si diamond, graphite | /predict/direct/mattersim | success or expected-limitation handling | <1 ms* |
Crystal generation | Ca₂N, SrTiO₃, Li₂MnO₃ | /predict/direct/mattergen | prediction present | <1 ms* |
MD micro-benchmark | Caffeine, 5 steps | /predict (router) | 5/5 responses received | 18.1 ± 1.5 ms |
*Logged as 0.0 ms; treated as <1 ms due to timer resolution/caching.