Skip to content
This repository has been archived by the owner on Jan 8, 2025. It is now read-only.

Commit

Permalink
R.C. 0.4.3 (#266)
Browse files Browse the repository at this point in the history
  • Loading branch information
toddroper authored Jun 23, 2023
1 parent 5d4938a commit bf22cd7
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
14 changes: 13 additions & 1 deletion migrate/seeds/es/indexes.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,21 @@
"configuration.metadata": {
"type": "object",
"enabled": false
},
"amr_configuration": {
"type": "object",
"enabled": false
}
}
},
"simulation": {},
"workflow": {}
"workflow": {
"dynamic": false,
"properties": {
"document": {
"type": "object",
"enabled": false
}
}
}
}
1 change: 1 addition & 0 deletions tds/modules/model_configuration/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ class ModelConfiguration(TdsModel):
_index = "model_configuration"
model_id: str
configuration: object
amr_configuration: Optional[object]
concepts: Optional[List] = []
exists: Optional[bool] = False

Expand Down
1 change: 1 addition & 0 deletions tds/modules/model_configuration/response.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ class ModelConfigurationResponse(BaseModel):
timestamp: datetime
model_id: str
configuration: object
amr_configuration: object
model_id: str


Expand Down

0 comments on commit bf22cd7

Please sign in to comment.