-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
27 lines (23 loc) · 771 Bytes
/
go.mod
File metadata and controls
27 lines (23 loc) · 771 Bytes
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
module llm-context-management
go 1.23.0
toolchain go1.24.2
require (
git.tu-berlin.de/mcc-fred/fred v0.2.19
github.com/go-redis/redis/v8 v8.11.5
github.com/google/uuid v1.6.0
github.com/mattn/go-sqlite3 v1.14.28
github.com/sirupsen/logrus v1.9.3
google.golang.org/grpc v1.73.0
google.golang.org/protobuf v1.36.6
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/go-errors/errors v1.4.2 // indirect
github.com/kr/pretty v0.3.1 // indirect
golang.org/x/net v0.38.0 // indirect
golang.org/x/sys v0.31.0 // indirect
golang.org/x/text v0.23.0 // indirect
google.golang.org/genproto v0.0.0-20220617124728-180714bec0ad // indirect
)