TheraOS
The decision operating system for critical environments. It unifies ERP systems, databases, models, and algorithms into a governed decision layer deployed within the client's infrastructure.
Grand Thera builds decision-grade AI for environments where critical decisions cannot wait for the next report. The platform connects operational data, analytical models, and specialized AI agents so teams can detect shifts, understand impact, and act before exposure reaches the P&L.
This page documents Grand Thera's public product narrative, integration surface, and open engineering material. Production source code, production calibration layers, orchestration systems, governance internals, and client-specific decision workflows remain closed.
Most enterprise systems can show what happened. Fewer systems can tell decision makers what changed, why it matters, and what should happen next. Grand Thera is designed for decision-critical environments where fragmented information, uncertain signals, and delayed execution create measurable financial risk.
The goal is not another dashboard layer. The goal is a reliable operating layer for direction: one that turns data into interpretable signals, connects those signals to agents, and supports action with traceable context.
Grand Thera's public positioning is organized around a decision-grade ecosystem. The following concepts are safe to reference publicly and provide the vocabulary for this documentation.
The decision operating system for critical environments. It unifies ERP systems, databases, models, and algorithms into a governed decision layer deployed within the client's infrastructure.
Purpose-built AI agents that predict, prescribe, and help execute next actions across complex operational and financial workflows.
An orchestration layer for detecting regime shifts, tracing financial impact, and coordinating corrective responses across decision agents.
Small, transparent repositories that share engineering discipline without exposing Grand Thera's closed production stack or client-specific intellectual property.
Grand Thera can publish open engineering artifacts while keeping product implementation closed. This separation keeps the public surface useful for developers, investors, and partners without leaking the systems that create the company's operational edge.
| Open engineering surface | Closed production surface |
|---|---|
| Documentation pages, API entry points, public GitHub organization, example notebooks, and auditable research demos. | Production source code, internal services, client deployments, private data contracts, and orchestration infrastructure. |
| Transparent modeling examples such as regime detection, stochastic forecasting, and standalone analytical dashboards. | Production calibration layers, model selection systems, agent policies, monitoring loops, and enterprise governance workflows. |
| Reusable vocabulary for how Grand Thera explains decision-grade AI to technical audiences. | Client-specific decision logic, integrations, deployment topology, and operational playbooks. |
The ecosystem is built for teams that operate with fragmented data, high uncertainty, and real business consequences. Public examples should describe outcomes and architecture patterns, not private implementation details.
Consolidate commercial, operational, and portfolio indicators into a unified view for faster performance diagnosis.
Detect market or operational state changes and estimate whether current behavior is stable, deteriorating, or entering a new response pattern.
Trace signals back to likely financial impact and route corrective actions before indicators become lagging losses.
Give specialized agents a governed context for recommending actions, validating assumptions, and closing the loop after execution.
The public architecture can be described as a decision loop. Each layer has a clear role, and production details can stay abstract while the engineering intent remains understandable.
Public material should keep deployment claims precise. Grand Thera describes TheraOS as deployable within client infrastructure, with critical data and decision workflows kept under client control. The docs should avoid exposing topology, credentials, data schemas, private integration contracts, or production diagrams.
Write about governance, traceability, and deployment posture at the pattern level. Do not include internal URLs, secrets, customer identifiers, private endpoint shapes, or implementation-specific architecture diagrams.
Use the public surface to understand the ecosystem, inspect the open engineering material, and explore the API documentation entry point.
Open Engineering is the public surface for Grand Thera's demonstration APIs, dashboards, and inspectable engineering artifacts. These examples are intentionally transparent: they show how the analytical layer behaves without releasing closed production systems.
The public API documentation is tied to Open Engineering demonstrations. It is the right place to inspect demo endpoints, request shapes, and integration examples, not a disclosure of closed production services.
K-Means initialization, Gaussian Markov Switching, regime probability heatmaps, transition diagnostics, and interactive inspection.
const response = await fetch(
"https://api.thera-os.com/open-engineering/regimes/analyze",
{
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
prices: [100.0, 101.0, 102.2, 103.1, 104.4],
window: 5,
n_regimes: "auto",
auto_method: "bic"
})
}
);
const result = await response.json();
console.log(result.latest_regime, result.transition_matrix);
Use the API docs for the exact demo endpoint contract as the Open Engineering surface evolves.
Missing-value reconstruction, Neural SDE-style drift and diffusion, Monte Carlo paths, target probabilities, and 2D/3D density views.
const response = await fetch(
"https://api.thera-os.com/open-engineering/neural-sde/forecast",
{
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
series: [100.0, 101.0, null, 102.5, 103.2],
steps: 100,
simulations: 1000,
targets: [112.0, 116.0, 120.0]
})
}
);
const result = await response.json();
console.log(result.forecast_mean, result.target_probabilities);
Use the API docs for the exact demo endpoint contract as the Open Engineering surface evolves.
Interactive variable selection, symbolic model fitting, scenario controls, formula rendering, residual diagnostics, and dependence analysis.
const response = await fetch(
"https://api.thera-os.com/open-engineering/symbolic/fit",
{
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
target: "margin",
features: ["price", "volume", "volatility"],
maxTerms: 6,
selectionCriterion: "bic"
})
}
);
const model = await response.json();
console.log(model.formula, model.metrics);
Use the API docs for the exact demo endpoint contract as the Open Engineering surface evolves.
git clone https://github.com/grandthera/AIT-Simple_RegimeDetection.git
cd AIT-Simple_RegimeDetection
python -m venv .venv
pip install -e .
python examples/neural_sde_forecast_demo.py
The generated HTML dashboards can be opened locally or through the public demo links above and used as inspectable examples of modeling assumptions, uncertainty visualization, and engineering care.