Skip to content

Commit 9067405

Browse files
change agentTypeString to AgentType
1 parent 4797df9 commit 9067405

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/frontend/src/models/messages.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { AgentType, AgentTypeString, StepStatus, PlanStatus } from './enums';
1+
import { AgentType, StepStatus, PlanStatus } from './enums';
22

33
/**
44
* Message roles compatible with Semantic Kernel
@@ -37,7 +37,7 @@ export interface ApprovalRequest {
3737
/** Action to be performed */
3838
action: string;
3939
/** Agent assigned to this step */
40-
agent: AgentTypeString;
40+
agent: AgentType;
4141
}
4242

4343
/**
@@ -83,7 +83,7 @@ export interface ActionRequest {
8383
/** Action to be performed */
8484
action: string;
8585
/** Agent assigned to this step */
86-
agent: AgentTypeString;
86+
agent: AgentType;
8787
}
8888

8989
/**
@@ -112,4 +112,4 @@ export interface PlanStateUpdate {
112112
session_id: string;
113113
/** Overall status of the plan */
114114
overall_status: PlanStatus;
115-
}
115+
}

0 commit comments

Comments
 (0)