File tree 1 file changed +10
-1
lines changed
1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -710,6 +710,15 @@ export enum RunState {
710
710
Error = "error"
711
711
}
712
712
713
+ export enum ToolCategory {
714
+ ProviderToolCategory = "provider" ,
715
+ CredentialToolCategory = "credential" ,
716
+ ContextToolCategory = "context" ,
717
+ InputToolCategory = "input" ,
718
+ OutputToolCategory = "output" ,
719
+ NoCategory = ""
720
+ }
721
+
713
722
export interface RunFrame {
714
723
id : string
715
724
type : RunEventType . RunStart | RunEventType . RunFinish
@@ -750,7 +759,7 @@ export interface CallFrame {
750
759
agentGroup ?: ToolReference [ ]
751
760
displayText ?: string
752
761
inputContext : InputContext [ ]
753
- toolCategory ?: string
762
+ toolCategory ?: ToolCategory
754
763
toolName : string
755
764
parentID ?: string
756
765
type : RunEventType . CallStart | RunEventType . CallChat | RunEventType . CallConfirm | RunEventType . CallContinue | RunEventType . CallSubCalls | RunEventType . CallProgress | RunEventType . CallFinish
You can’t perform that action at this time.
0 commit comments