diff --git a/VERSION b/VERSION index 17e51c3..d917d3e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.1 +0.1.2 diff --git a/go.mod b/go.mod index c159e38..7854a49 100644 --- a/go.mod +++ b/go.mod @@ -2,8 +2,12 @@ module github.com/chatbotkit/rook go 1.21 +// @note pin the build toolchain to a stdlib-patched Go (GO-2026-5037 / +// GO-2026-5039 are fixed in go1.26.4). Bump as future stdlib advisories land. +toolchain go1.26.4 + require ( - github.com/chatbotkit/go-sdk v0.1.0 + github.com/chatbotkit/go-sdk v0.1.1 github.com/joho/godotenv v1.5.1 github.com/spf13/pflag v1.0.5 ) diff --git a/go.sum b/go.sum index 8ec2ee3..cfb3227 100644 --- a/go.sum +++ b/go.sum @@ -1,5 +1,5 @@ -github.com/chatbotkit/go-sdk v0.1.0 h1:EehCJmmbN2BoGNEaFjYLEFrHTEly/34lgBfNnzc2lBQ= -github.com/chatbotkit/go-sdk v0.1.0/go.mod h1:u9QxNKUqhls4OOPMuVE0i/Q4wTJMgBARKw+CcQIeg00= +github.com/chatbotkit/go-sdk v0.1.1 h1:luefnGxlVH5zjGskwt8aYRxOIusnRhnl2o9qaM7j088= +github.com/chatbotkit/go-sdk v0.1.1/go.mod h1:u9QxNKUqhls4OOPMuVE0i/Q4wTJMgBARKw+CcQIeg00= github.com/joho/godotenv v1.5.1 h1:7eLL/+HRGLY0ldzfGMeQkb7vMd0as4CfYvUVzLqw0N0= github.com/joho/godotenv v1.5.1/go.mod h1:f4LDr5Voq0i2e/R5DDNOoa2zzDfwtkZa6DnEwAbqwq4= github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= diff --git a/internal/agent/runner.go b/internal/agent/runner.go index 0260ff7..b14c92c 100644 --- a/internal/agent/runner.go +++ b/internal/agent/runner.go @@ -84,7 +84,7 @@ func Run(ctx context.Context, cfg Config) (int, error) { Tools: tools, MaxIterations: cfg.MaxIterations, Extensions: &types.ConversationCompleteRequestExtensions{ - Features: []types.IndigoFeature{ + Features: []types.CompleteFeature{ { Name: skillsFeature["name"].(string), Options: skillsFeature["options"].(map[string]interface{}),