v1.0.0-rc.71

This commit is contained in:
2025-08-28 07:07:01 +02:00
parent 4e3b54f0b0
commit dba807fadd
185 changed files with 267 additions and 1649 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ export type OpenAPIConfig = {
export const OpenAPI: OpenAPIConfig = {
BASE: 'http://localhost:5232',
VERSION: '1.0.0-rc.70',
VERSION: '1.0.0-rc.71',
WITH_CREDENTIALS: false,
CREDENTIALS: 'include',
TOKEN: undefined,
@@ -24,10 +24,6 @@ export type broker_status = {
* Number of installed GPUs
*/
gpu_count?: number;
/**
* ML resolution estimation available
*/
ml_resolution_estimation?: boolean;
};
export namespace broker_status {
@@ -51,10 +51,6 @@ export type jfjoch_settings = {
* Location of built JavaScript web frontend
*/
frontend_directory: string;
/**
* Address to ML-based inference servers
*/
inference_server_addr?: Array<string>;
ssl?: {
certificate: string;
key: string;
+1 -1
View File
@@ -78,7 +78,7 @@ export type scan_result = {
*/
err?: number;
/**
* Resolution estimate from ML algorithm
* Diffraction resolution estimate
*/
res?: number;
}>;
@@ -31,14 +31,6 @@ export type spot_finding_settings = {
* High resolution threshold to consider spot "low resolution" [Angstrom]
*/
high_resolution_limit_for_spot_count_low_res: number;
/**
* Diffraction image resolution estimation using ML model from SSRL; `jfjoch_broker` must be compiled with libtorch support
* and path to .pt file configured in `jfjoch_broker` configuration file.
* If enabled it will likely reduce performance of Jungfraujoch to below 100 Hz.
* (experimental feature)
*
*/
resolution_estimate?: boolean;
/**
* Quick integration of Bragg spots in diffraction images.
* If enabled it will likely reduce performance of Jungfraujoch for datasets with a very high indexing rate.