Operator registry and async-friendly execution layer for Jarvis
Project description
Jarvis-Operas
Jarvis-Operas is a standalone operator layer for registering, loading, and calling Python callables.
- Scope: operators only (likelihood, chi2, prior mapping, data transforms, etc.)
- No dependency on Jarvis-HEP internals
- Native async entrypoint for Jarvis-HEP style execution (
await registry.acall(...)) - Stable
"<namespace>.<name>"naming for references from Jarvis-HEP/Jarvis-PLOT YAML
Install
pip install .
Or for development (includes pytest and installs terminal command):
pip install -e ".[dev]"
Terminal command (jopera)
After install, you can use:
jopera
jopera help examples
jopera list --namespace math
jopera list --namespace math --json
jopera info stat.chi2_cov --json
jopera call math.add --kwargs '{"a": 1, "b": 2}'
jopera acall stat.chi2_cov --arg residual=[1.0,-0.5] --arg cov=[[2.0,0.1],[0.1,1.0]]
jopera call helper.eggbox --kwargs '{"observables":{"x":0.5,"y":0.0}}'
jopera list --namespace math --log-mode info
jopera call math.add --kwargs '{"a": 1, "b": 2}' --log-mode debug
jopera init
jopera init --manifest ./manifest.json --cache-root ~/.jarvis-operas/curve-cache
jopera --help-advanced
Load user operators directly in CLI:
jopera load /absolute/path/to/my_ops.py
jopera call my_ops.my_op --user-ops /absolute/path/to/my_ops.py --arg x=10
jopera info my_ops.my_op --json
jopera update /absolute/path/to/my_ops.py
jopera update /absolute/path/to/my_ops.py --function my_op
jopera delete-func my_ops.old_op
jopera delete-func h12345
jopera delete-namespace legacy_ops
CLI behavior:
jopera(no args) prints a quick start cardjopera listprints grouped human-readable output by default (id + name)jopera list --jsonprints machine-readable JSON objects withid/name/namespacejopera info <name_or_id>prints metadata (including a unique id) and a suggested next commandjopera load <path>persists this source path by default for future processesjopera load <path> --session-onlyloads without persistingjopera initprecompiles bundled interpolation manifest libraryjopera init --manifest <manifest.json>precompiles a custom curve JSON manifestjopera update <path>updates all functions in script namespaces (default behavior)jopera update <path> --function <name>updates one function from scriptjopera delete-func <name_or_id>/delete-namespaceremove persisted functions/namespaces
Core API
from jarvis_operas import get_global_registry
registry = get_global_registry()
registry.call("math.add", a=1, b=2)
registry.call("math.identity", x={"k": 1})
Supported namespace convention:
- Built-ins use feature namespaces, e.g.:
math.<name>stat.<name>helper.<name>
- User operator files default to
<script_name>.<func_name>
Async call (Jarvis-HEP Factory/Module friendly)
result = await registry.acall(
"stat.chi2_cov",
residual=[1.0, -0.5],
cov=[[2.0, 0.1], [0.1, 1.0]],
observables={"obs": 1.0},
sample_info={"id": 42},
cfg={"mode": "demo"},
)
Behavior:
- Async operator: awaited directly
- Sync operator: offloaded via
asyncio.to_threadby default (or custom executor) - Batch helper concurrency:
await registry.acall_helper_many("eggbox", [...])
Example batch helper execution for Factory-side concurrent scans:
results = await registry.acall_helper_many(
"eggbox",
[
{"observables": {"x": 0.1, "y": 0.2}},
{"observables": {"x": 0.3, "y": 0.4}},
{"observables": {"x": 0.5, "y": 0.6}},
],
)
Logger injection
registry methods accept optional logger and operators can optionally define logger argument.
- If no logger is provided, Jarvis-Operas uses
loguru.loggerbound withmodule="Jarvis-Operas" - If logger is provided, Jarvis-Operas reuses it (no duplicate handler creation)
- Console format follows Jarvis-HEP style (
module -> time - [level] >>> message) - Default mode is
warning(only warning/error/critical are shown) - Optional modes:
info,debug
Utility:
from jarvis_operas import get_logger, set_log_mode
set_log_mode("info") # or "debug", default is "warning"
logger = get_logger()
Load user operators from file
from jarvis_operas import OperatorRegistry, load_user_ops
registry = OperatorRegistry()
loaded = load_user_ops("./my_ops.py", registry)
print(loaded)
Persistent registration for future Python processes:
from jarvis_operas import get_global_registry, persist_user_ops
persist_user_ops("/absolute/path/to/my_ops.py")
registry = get_global_registry() # auto-loads persisted sources
Persistence store location:
- Default:
~/.jarvis-operas/user_ops.json - Override with env:
JARVIS_OPERAS_PERSIST_FILE=/custom/path/user_ops.json - The same store keeps persistent delete/update overrides for functions and namespaces
By default, load_user_ops("./my_ops.py", ...) uses my_ops as namespace, so
my_op becomes my_ops.my_op.
my_ops.py can export operators with either style:
- Decorator (recommended)
from jarvis_operas import oper
@oper("my_chi2")
def my_chi2(residual, cov, logger=None):
...
When loaded by load_user_ops("./my_ops.py", ...), this is registered as
my_ops.my_chi2.
- Explicit whitelist
def my_op(x):
return x
__JARVIS_OPERAS__ = {
"my_op": my_op,
}
Curve publish/runtime cache (manifest + JSON sources)
Use this flow when you have many 1D interpolation curves and want runtime speed:
- Source of truth:
manifest.json+ per-curve JSON (x/yarrays) - Precompile once:
jopera init(bundled library) orjopera init --manifest ./manifest.json(custom) - Runtime auto-registration:
get_global_registry()registers hot curves asinterp.<curve_id> - Runtime load path uses
index.json+*.pklonly (no source JSON in hot path)
Namespace rule for registered interpolation operators:
- If
namespaceis set in curve item, register as<namespace>.<curve_id> - Else if
metadata.group(orgroup) is set, register as<group>.<curve_id> - Else fallback to
interp.<curve_id>
Bundled interpolation manifest library resource:
jarvis_operas/manifests/interpolations.manifest.json
Minimal manifest example:
{
"curves": [
{
"curve_id": "demo_curve",
"source": "curves/demo_curve.json",
"kind": "linear",
"hot": true
}
]
}
Curve source JSON example:
{
"x": [0.0, 1.0, 2.0],
"y": [0.0, 1.0, 4.0]
}
Python integration API:
from jarvis_operas import (
init_curve_cache,
interpolation_manifest_resource,
load_hot_curve_function_table,
load_interpolation_manifest_library,
register_hot_curves,
)
library_manifest = load_interpolation_manifest_library()
library_path = interpolation_manifest_resource()
init_curve_cache("./manifest.json")
table = load_hot_curve_function_table()
funcs = {}
updated = register_hot_curves(funcs)
Built-in operators
math.add(a, b)stat.chi2_cov(residual, cov)helper.eggbox(observables)whereobservablesmust be{"x": ..., "y": ...}(scalar, NumPy, or Pandas)math.identity(x)
All built-ins can be called via sync/async registry APIs and accept scalar, NumPy, and Pandas inputs where applicable.
Built-ins also support observables dict input (Jarvis-HEP style), e.g.:
registry.call("math.add", observables={"a": 1.0, "b": 2.0})
registry.call("stat.chi2_cov", observables={"residual": [1.0, 0.0], "cov": [[2.0, 0.0], [0.0, 1.0]]})
registry.call("helper.eggbox", observables={"x": 0.5, "y": 0.0})
Query registry for external UIs (JHEP/JPlot)
registry.list()
registry.list(namespace="math")
registry.info("stat.chi2_cov")
registry.info(...) returns metadata, signature, docstring summary, module/qualname, and async flag.
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 jarvis_operas-1.1.2.tar.gz.
File metadata
- Download URL: jarvis_operas-1.1.2.tar.gz
- Upload date:
- Size: 40.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5595ca9f4202ec2824eb497ded33955107547c0df0bd8bca855f078f5657a464
|
|
| MD5 |
4299c543f2c5924917f8d57d72aa66bf
|
|
| BLAKE2b-256 |
bf82241fa80077a9e68f5031608292ad9a49130165a11001f51fe96af272fa9f
|
File details
Details for the file jarvis_operas-1.1.2-py3-none-any.whl.
File metadata
- Download URL: jarvis_operas-1.1.2-py3-none-any.whl
- Upload date:
- Size: 38.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
641b3a4f0c21dc2a0a94197b68daac682a27748385a6e920fd74b3a65abe4512
|
|
| MD5 |
4a199badb48f3259645f6ca076b423e5
|
|
| BLAKE2b-256 |
2f4a8e01c95dc50fc7fa4c8281a56d4da6e161a1270c9c5a9505d5c50889c3d1
|