Files
langchaingo/examples/chroma-vectorstore-example/go.mod
T
Dmitry Ng 064f09155c chore(deps): bump Go toolchain to 1.26.5 and fix vulnerable dependencies
- Raised the `go` directive from 1.24.1 to 1.26.5 to satisfy pgx/v5 and ollama's minimum Go version requirements and to pick up 15 patched standard library CVEs.
- Updated `pgx/v5`, `otel`/`otel/sdk`/`otlptracehttp`, `x/net`, and the AWS `eventstream` protocol package to their latest requested versions.
- Remediated govulncheck-flagged CVEs in `grpc`, `x/text`, `x/crypto`, `antchfx/xpath`, AWS SDK `bedrock*`/`s3` services, `etcd/server`, and `mongo-driver` v1/v2.
- Fixed ollama's `MainGPU` API type change (`int` -> `*int`) in `llms/ollama/options.go` without breaking the public `WithRunnerMainGPU` signature.
2026-08-04 13:57:26 +03:00

23 lines
672 B
Modula-2

module github.com/vxcontrol/langchaingo/examples/chroma-vectorstore-example
go 1.26.5
require (
github.com/amikos-tech/chroma-go v0.2.3
github.com/google/uuid v1.6.0
github.com/vxcontrol/langchaingo v0.1.14-update.1
)
require (
github.com/Masterminds/semver v1.5.0 // indirect
github.com/dlclark/regexp2 v1.11.5 // indirect
github.com/oklog/ulid v1.3.1 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pkoukk/tiktoken-go v0.1.8 // indirect
github.com/santhosh-tekuri/jsonschema/v6 v6.0.2 // indirect
github.com/yalue/onnxruntime_go v1.19.0 // indirect
golang.org/x/text v0.39.0 // indirect
)
replace github.com/vxcontrol/langchaingo => ../..