Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.1
0.1.2
6 changes: 5 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -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=
Expand Down
2 changes: 1 addition & 1 deletion internal/agent/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{}),
Expand Down
Loading