2025-08-05 03:56:23 +02:00
|
|
|
module chat
|
|
|
|
|
|
2025-08-29 22:55:41 +02:00
|
|
|
go 1.25.0
|
2025-08-05 03:56:23 +02:00
|
|
|
|
|
|
|
|
require (
|
2025-08-29 22:55:41 +02:00
|
|
|
github.com/coalaura/plain v0.2.0
|
|
|
|
|
github.com/go-chi/chi/v5 v5.2.3
|
2025-08-16 15:15:06 +02:00
|
|
|
github.com/goccy/go-yaml v1.18.0
|
2025-09-12 14:34:08 +02:00
|
|
|
github.com/revrost/go-openrouter v0.2.4
|
2025-09-12 21:39:17 +02:00
|
|
|
github.com/vmihailenco/msgpack/v5 v5.4.1
|
2025-09-08 19:06:36 +02:00
|
|
|
golang.org/x/crypto v0.42.0
|
2025-08-05 03:56:23 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
require (
|
2025-08-29 22:55:41 +02:00
|
|
|
github.com/containerd/console v1.0.5 // indirect
|
2025-08-05 03:56:23 +02:00
|
|
|
github.com/felixge/httpsnoop v1.0.4 // indirect
|
|
|
|
|
github.com/mattn/go-colorable v0.1.14 // indirect
|
|
|
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
|
|
|
github.com/rs/zerolog v1.34.0 // indirect
|
2025-09-12 21:39:17 +02:00
|
|
|
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
|
2025-09-08 19:06:36 +02:00
|
|
|
golang.org/x/sys v0.36.0 // indirect
|
|
|
|
|
golang.org/x/term v0.35.0 // indirect
|
2025-08-05 03:56:23 +02:00
|
|
|
)
|