2023-07-26 23:24:14 +02:00
|
|
|
module github.com/commandlinedev/prompt-server
|
2022-06-12 22:39:48 +02:00
|
|
|
|
2023-02-24 00:17:47 +01:00
|
|
|
go 1.18
|
2022-06-12 22:39:48 +02:00
|
|
|
|
|
|
|
require (
|
2023-02-15 01:17:54 +01:00
|
|
|
github.com/alessio/shellescape v1.4.1
|
|
|
|
github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2
|
|
|
|
github.com/creack/pty v1.1.18
|
2022-07-01 19:48:14 +02:00
|
|
|
github.com/golang-migrate/migrate/v4 v4.15.2
|
2022-07-01 02:02:19 +02:00
|
|
|
github.com/google/uuid v1.3.0
|
|
|
|
github.com/gorilla/mux v1.8.0
|
|
|
|
github.com/gorilla/websocket v1.5.0
|
2022-07-01 19:48:14 +02:00
|
|
|
github.com/jmoiron/sqlx v1.3.5
|
|
|
|
github.com/mattn/go-sqlite3 v1.14.14
|
2023-04-18 02:31:30 +02:00
|
|
|
github.com/sawka/txwrap v0.1.2
|
2023-07-26 23:24:14 +02:00
|
|
|
github.com/commandlinedev/apishell v0.0.0
|
2023-03-08 18:37:52 +01:00
|
|
|
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
|
2023-02-15 01:17:54 +01:00
|
|
|
golang.org/x/mod v0.5.1
|
|
|
|
golang.org/x/sys v0.0.0-20220412211240-33da011f77ad
|
|
|
|
mvdan.cc/sh/v3 v3.5.1
|
2022-07-01 02:02:19 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
2022-07-01 19:48:14 +02:00
|
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
2023-05-02 21:43:54 +02:00
|
|
|
github.com/sashabaranov/go-openai v1.9.0 // indirect
|
2022-07-01 19:48:14 +02:00
|
|
|
go.uber.org/atomic v1.7.0 // indirect
|
2022-06-12 22:39:48 +02:00
|
|
|
)
|
|
|
|
|
2023-05-02 21:43:54 +02:00
|
|
|
|