-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
41 lines (37 loc) · 1.35 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
module github.com/XiaoConstantine/maestro
go 1.22.5
require (
github.com/AlecAivazis/survey/v2 v2.3.7
github.com/XiaoConstantine/dspy-go v0.22.1
github.com/asg017/sqlite-vec-go-bindings v0.1.6
github.com/briandowns/spinner v1.23.2
github.com/c-bata/go-prompt v0.2.6
github.com/google/go-github/v68 v68.0.0
github.com/logrusorgru/aurora v2.0.3+incompatible
github.com/mattn/go-isatty v0.0.20
github.com/mattn/go-sqlite3 v1.14.24
golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa
golang.org/x/oauth2 v0.25.0
golang.org/x/text v0.21.0
)
require (
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/mattn/go-runewidth v0.0.9 // indirect
github.com/mattn/go-tty v0.0.3 // indirect
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
github.com/pkg/term v1.2.0-beta.2 // indirect
github.com/spf13/pflag v1.0.5 // indirect
)
require (
github.com/XiaoConstantine/anthropic-go v0.0.8 // indirect
github.com/fatih/color v1.7.0 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/mattn/go-colorable v0.1.7 // indirect
github.com/sourcegraph/conc v0.3.0 // indirect
github.com/spf13/cobra v1.8.1
go.uber.org/atomic v1.7.0
go.uber.org/multierr v1.9.0 // indirect
golang.org/x/sys v0.30.0 // indirect
golang.org/x/term v0.28.0
)