AI-native physics simulation OS with TAPS-first physics IR, solver planning, and cloud runner tooling.
Project description
PhysicsOS
PhysicsOS is an AI-native physics simulation scaffold built around a TAPS-first workflow:
- compile physics problems into typed weak-form / solver IR;
- route executable IR blocks to local TAPS kernels;
- prepare audited fallback bundles for FEniCSx, MFEM, PETSc, or cloud runners;
- expose a CLI for PhysicsOS Cloud / foamvm device-login and job submission.
The project is currently alpha-stage research infrastructure. Local TAPS kernels are intentionally lightweight and deterministic; full-solver execution is prepared through manifests and approval gates rather than silently running external software.
Install
From a local checkout:
pip install -e .
The default install includes the official DeepAgents CLI/TUI, LangGraph, and the OpenAI-compatible model adapter, so physicsos starts the natural-language PhysicsOS agent loop immediately after model credentials are configured.
With Gmsh / meshio geometry tooling:
pip install -e ".[geometry]"
For package build and test tooling:
pip install -e ".[dev]"
CLI
physicsos
physicsos paths
physicsos auth login
physicsos account
physicsos runner submit path/to/manifest.json
physicsos runner status JOB_ID
physicsos runner logs JOB_ID
physicsos runner artifacts JOB_ID
Running physicsos with no arguments launches the official DeepAgents Textual TUI with the physicsos agent selected.
PhysicsOS automatically installs its DeepAgents agent prompt and subagent prompts under ~/.deepagents/physicsos/.
DeepAgents manages interactive threads, TUI state, model selection, MCP tools, skills, and approval prompts.
PhysicsOS local control commands remain available as normal shell commands, for example physicsos paths, physicsos auth login, and physicsos runner ....
Device-login tokens are stored under the user config directory, not in the repository.
To enable model calls, configure an OpenAI-compatible model:
$env:PHYSICSOS_OPENAI_API_KEY="..."
$env:PHYSICSOS_OPENAI_BASE_URL="https://api.tu-zi.com/v1"
$env:PHYSICSOS_OPENAI_MODEL="gpt-5.4"
These variables are mapped to the official DeepAgents CLI at startup. You can still pass native DeepAgents flags through physicsos, for example:
physicsos --message "simulate a 1D steady heat conduction problem"
physicsos --resume
physicsos --model openai:gpt-5.4
Local Data
PhysicsOS uses PHYSICSOS_HOME when set. Otherwise, pip-installed usage stores runtime state under:
~/.physicsos/
In a source checkout, runtime artifacts stay under the repository so tests and development remain reproducible.
Default paths:
- Unified config:
~/.physicsos/config.json - Cloud auth config:
~/.physicsos/config.jsonunder thecloudobject - Interactive sessions:
~/.physicsos/sessions/session-*.jsonlfor pip installs, or./sessions/session-*.jsonlin a source checkout - Command history:
~/.physicsos/history.jsonlfor pip installs, or./history.jsonlin a source checkout - Solver/session artifacts:
~/.physicsos/scratch/...for pip installs, or./scratch/...in a source checkout - Case memory:
~/.physicsos/data/case_memory.jsonlfor pip installs, or./data/case_memory.jsonlin a source checkout - Knowledge base:
~/.physicsos/data/knowledge/physicsos_knowledge.sqlitefor pip installs, or./data/knowledge/physicsos_knowledge.sqlitein a source checkout
Set PHYSICSOS_HOME=/path/to/physicsos-home to relocate these files.
Run physicsos paths to print the exact paths used by the current environment.
Config
PhysicsOS creates ~/.physicsos/config.json on first run. Edit it to set model, API, cloud, and storage preferences in one place:
{
"model": {
"provider": "openai",
"name": "gpt-5.4",
"api_key": "",
"base_url": "https://api.tu-zi.com/v1",
"use_responses_api": false
},
"cloud": {
"runner_url": "https://foamvm.vercel.app",
"access_token": ""
}
}
Environment variables such as PHYSICSOS_OPENAI_API_KEY, PHYSICSOS_OPENAI_BASE_URL, and PHYSICSOS_OPENAI_MODEL still override this file for one-off runs.
Development
python -B -m pytest -q
python -m build
python -m twine check dist/*
Notes
ARCHITECTURE.mdis the main design document.taps.mddescribes the TAPS-first solver strategy.vm.mddescribes PhysicsOS Cloud / foamvm integration.- Heavy model weights, generated scratch artifacts, local secrets, and knowledge databases are excluded from package distribution.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file physicsos-0.1.9.tar.gz.
File metadata
- Download URL: physicsos-0.1.9.tar.gz
- Upload date:
- Size: 225.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6030e3e8c521706958866ba94cfd381b246c83c45e02e3a507913da9aec81c83
|
|
| MD5 |
61f318486c13f934db6b33bf573e747d
|
|
| BLAKE2b-256 |
4e3e01f8f767c69e7a7ed4a596adec758818dcfbbcb56c65d91e3171029678de
|
File details
Details for the file physicsos-0.1.9-py3-none-any.whl.
File metadata
- Download URL: physicsos-0.1.9-py3-none-any.whl
- Upload date:
- Size: 196.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b96ed1ffa55d5eac38e5d97f7d2c2f3ffa93e561a153dad8d898ee550f30b113
|
|
| MD5 |
330ae137a3860ea00f6b4c6e8dd8aff3
|
|
| BLAKE2b-256 |
b01b54c1861a21e06f38dc82f28ca53ab478a6db587ac5fd969b22281135e75c
|