Skip to content

Commit e907e05

Browse files
authored
Merge pull request #9 from maximhq/hotfix/fixes-data-method
fix: fixes data method in toolcalls that was skipping toolCall args a…
2 parents 271baf4 + 659b4eb commit e907e05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

logging/toolCall.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ func (tc *ToolCall) End() {
5252
tc.base.End()
5353
}
5454

55-
func (tc *ToolCall) Data() map[string]interface{} {
55+
func (tc *ToolCall) data() map[string]interface{} {
5656
baseData := tc.base.data()
5757
baseData["description"] = tc.Description
5858
baseData["args"] = tc.Args

0 commit comments

Comments
 (0)