@@ -1476,6 +1476,8 @@ export default {
1476
1476
workflowMainAIModel: null as AIModel | null ,
1477
1477
// workflowMainPrompt: '' as string,
1478
1478
workflowMainAIModelParameters: {} as object ,
1479
+ workflowAssistantId: ' ' as string ,
1480
+ workflowVectorStoreId: ' ' as string ,
1479
1481
workflowName: ' ' as string ,
1480
1482
workflowPackageName: ' FoundationaLLM' as string ,
1481
1483
workflowClassName: ' ' as string ,
@@ -1725,6 +1727,8 @@ export default {
1725
1727
}
1726
1728
1727
1729
if (agent .workflow ) {
1730
+ this .workflowAssistantId = agent .workflow .assistant_id ?? ' ' ;
1731
+ this .workflowVectorStoreId = agent .workflow .vector_store_id ?? ' ' ;
1728
1732
this .workflowName = agent .workflow .name ?? ' ' ;
1729
1733
this .workflowPackageName = agent .workflow .package_name ?? ' ' ;
1730
1734
this .workflowClassName = agent .workflow .class_name ?? ' ' ;
@@ -2176,6 +2180,8 @@ export default {
2176
2180
workflow = {
2177
2181
... this .selectedWorkflow ,
2178
2182
workflow_host: this .workflowHost ,
2183
+ assistant_id: this .workflowAssistantId ,
2184
+ vector_store_id: this .workflowVectorStoreId ,
2179
2185
name: this .workflowName ,
2180
2186
package_name: this .workflowPackageName ,
2181
2187
class_name: this .workflowClassName ,
0 commit comments