Skip to content

Commit 041cfb5

Browse files
committed
chore: update openapi specs
1 parent 7f5bba5 commit 041cfb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jaqpot_api_client/models/prediction_model.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class PredictionModel(BaseModel):
3636
dependent_features: List[Feature] = Field(description="List of dependent features for the model", alias="dependentFeatures")
3737
independent_features: List[Feature] = Field(description="List of independent features for the model", alias="independentFeatures")
3838
type: ModelType
39-
raw_model: StrictStr = Field(description="Raw model data in serialized format", alias="rawModel")
39+
raw_model: Optional[StrictStr] = Field(default=None, description="Raw model data in serialized format", alias="rawModel")
4040
raw_preprocessor: Optional[StrictStr] = Field(default=None, description="Raw preprocessor data in serialized format", alias="rawPreprocessor")
4141
doas: Optional[List[PredictionDoa]] = Field(default=None, description="List of Domain of Applicability (DoA) configurations")
4242
selected_features: Optional[List[StrictStr]] = Field(default=None, description="List of feature names selected for the model", alias="selectedFeatures")

0 commit comments

Comments
 (0)