19 lines
461 B
Java
19 lines
461 B
Java
|
|
package com.quantai.trader.artifact;
|
||
|
|
|
||
|
|
import java.util.Set;
|
||
|
|
|
||
|
|
public record TraderModelBundleManifest(
|
||
|
|
String modelBundleVersion,
|
||
|
|
String calibrationBundleVersion,
|
||
|
|
String featureVersion,
|
||
|
|
String labelVersion,
|
||
|
|
String splitVersion,
|
||
|
|
Set<String> requiredModels,
|
||
|
|
Set<String> providedModels,
|
||
|
|
Set<String> missingModels,
|
||
|
|
String bundleHashSha256,
|
||
|
|
boolean complete,
|
||
|
|
String status
|
||
|
|
) {
|
||
|
|
}
|