The Basic Model Interface (BMI) is a standard interface for models. The interface is available in different languages and a language agnosting version in SIDL.
To have a consumer of the model and the provider of the model seperated you can use grpc4bmi, but this only works on languages that have a grpc implementation. This repo replaced the gRPC protocol with an REST API. The REST API specification is in the OpenAPI format.
- Request body and response body are in JSON format
- On errors you get 4xx and 5xx responses with Problem Details as response body
- Variable names must be URL safe
- Variable type must be in enum.
- get_value_ptr function is not available
OpenAPI reference documentation
This repository is a monorepo containing packages for different languages.
- Python client and server, in ./python/ directory
- Julia client and server, in ./julia/ directory
- R server, in ./R/ directory
Installation
pip install remotebmi
A client can connect to a running server with the following code.
from remotebmi.client.client import RemoteBmiClient
model = RemoteBmiClient('http://localhost:50051')
# Now you can use the BMI methods on model
# for example
model.initialize('config.file')
model.update()
model.get_value('var_name')
A client can also start a Apptainer container containing the model and the server.
from remotebmi.client.apptainer import BmiClientApptainer
model = BmiClientApptainer('my_model.sif', work_dir='/tmp')
The client picks a random port and expects the container to run the BMI web server on that port.
The port is passed to the container using the BMI_PORT
environment variable.
A client can also start a Docker container containing the model and the server.
from remotebmi.client.docker import BmiClientDocker
model = BmiClientDocker('ewatercycle/wflowjl:0.7.3', work_dir='/tmp')
The BMI web server inside the Docker container should be running on port 50051.
If the port is different, you can pass the port as the image_port
argument to the BmiClientDocker
constructor.
Given you have a model class called MyModel
in a package mypackage
then the web service can be started with the following command.
BMI_MODULE=mypackage BMI_CLASS=MyModel run-bmi-server
For example leakybucket:
pip install leakybucket
BMI_MODULE=leakybucket.leakybucket_bmi BMI_CLASS=LeakyBucketBmi run-bmi-server
and the client can connect to it with the following code.
> from remotebmi.client.client import RemoteBmiClient
> client = RemoteBmiClient('http://localhost:50051')
> client.get_component_name()
leakybucket
Given you have a model class called MyModel
and a BMI called BMI
inside the MyPackage
package.
using MyPackage
import RemoteBMI.Server: run_bmi_server
port = parse(Int, get(ENV, "BMI_PORT", "50051"))
run_bmi_server(MyPackage.Model, "0.0.0.0", port)
import RemoteBMI.Client: BMIClient
import BasicModelInterface as BMI
model = BMIClient("http://localhost:50555")
BMI.get_component_name(m)
Given you have a model called ModelBmi
that has a BMI inside a MyModel
R library.
library(remotebmi)
library(MyModel)
port = as.integer(Sys.getenv("BMI_PORT", 50051))
serve(MyModel::ModelBmi$new(), port=port, host="localhost")
Any language that can run a HTTP server and parse/load JSON can be used as a provider.
The server should implement the openapi.yaml specification.