Skip to content

Commit a637a38

Browse files
committed
fix: remove extraneous Calls field on RunFrame
Signed-off-by: Donnie Adams <[email protected]>
1 parent 70d30c6 commit a637a38

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

frame.go

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,16 @@ type Frame struct {
1010
}
1111

1212
type RunFrame struct {
13-
Calls map[string]Call `json:"-"`
14-
ID string `json:"id"`
15-
Program Program `json:"program"`
16-
Input string `json:"input"`
17-
Output string `json:"output"`
18-
Error string `json:"error"`
19-
Start time.Time `json:"start"`
20-
End time.Time `json:"end"`
21-
State RunState `json:"state"`
22-
ChatState any `json:"chatState"`
23-
Type EventType `json:"type"`
13+
ID string `json:"id"`
14+
Program Program `json:"program"`
15+
Input string `json:"input"`
16+
Output string `json:"output"`
17+
Error string `json:"error"`
18+
Start time.Time `json:"start"`
19+
End time.Time `json:"end"`
20+
State RunState `json:"state"`
21+
ChatState any `json:"chatState"`
22+
Type EventType `json:"type"`
2423
}
2524

2625
type CallFrame struct {

0 commit comments

Comments
 (0)