Breakthrough Insights
albert.resources.btinsight
BTInsightCategory
Attributes:
Name | Type | Description |
---|---|---|
OPTIMIZER |
|
|
CUSTOM_OPTIMIZER |
|
|
IMPACT_CHART |
|
|
MOLECULE |
|
|
SMART_DOE |
|
|
GENERATE |
|
BTInsightState
Attributes:
Name | Type | Description |
---|---|---|
QUEUED |
|
|
BUILDING_MODELS |
|
|
GENERATING_CANDIDATES |
|
|
COMPLETE |
|
|
ERROR |
|
BTInsightPayloadType
Attributes:
Name | Type | Description |
---|---|---|
BREAKTHROUGH |
|
|
ALBERTO |
|
BTInsightRegistry
Bases: BaseAlbertModel
Registry for the BTInsight.
Registry contains result metadata for the BTInsight. Additional attributes can be added to the registry as needed.
Show JSON schema:
{
"description": "Registry for the BTInsight.\n\nRegistry contains result metadata for the BTInsight.\nAdditional attributes can be added to the registry as needed.",
"properties": {
"BuildLogs": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Buildlogs"
},
"Metrics": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Metrics"
},
"Settings": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Settings"
}
},
"title": "BTInsightRegistry",
"type": "object"
}
Fields:
BTInsight
Bases: BaseResource
Attributes:
Name | Type | Description |
---|---|---|
name |
str
|
|
category |
BTInsightCategory
|
|
metadata |
dict[str, Any] | None
|
|
state |
BTInsightState | None
|
|
id |
BTInsightId | None
|
|
dataset_id |
BTDatasetId | None
|
|
model_session_id |
BTModelSessionId | None
|
|
model_id |
BTModelId | None
|
|
output_key |
str | None
|
|
start_time |
str | None
|
|
end_time |
str | None
|
|
total_time |
str | None
|
|
raw_payload |
dict[str, Any] | None
|
|
payload_type |
BTInsightPayloadType | None
|
|
registry |
BTInsightRegistry | None
|
|
content_edited |
bool | None
|
|
model_session_id
model_session_id: BTModelSessionId | None = Field(
default=None, alias="modelSessionId"
)