mirror of
https://github.com/vxcontrol/langchaingo.git
synced 2026-07-21 00:45:22 -04:00
450c02a722
chore: update all examples to use v0.1.14-pre.4 - Remove replace directives from 5 examples that had local path references - Update all 75 example go.mod files to use the latest pre-release version - Ensures examples work correctly for users who clone the repository
29 lines
952 B
Modula-2
29 lines
952 B
Modula-2
module github.com/tmc/langchaingo/examples/pinecone-vectorstore-example
|
|
|
|
go 1.23.8
|
|
|
|
toolchain go1.24.6
|
|
|
|
require (
|
|
github.com/google/uuid v1.6.0
|
|
github.com/tmc/langchaingo v0.1.14-pre.4
|
|
)
|
|
|
|
require (
|
|
github.com/apapsch/go-jsonmerge/v2 v2.0.0 // indirect
|
|
github.com/deepmap/oapi-codegen/v2 v2.1.0 // indirect
|
|
github.com/dlclark/regexp2 v1.10.0 // indirect
|
|
github.com/golang/protobuf v1.5.4 // indirect
|
|
github.com/oapi-codegen/runtime v1.1.1 // indirect
|
|
github.com/pinecone-io/go-pinecone v0.4.1 // indirect
|
|
github.com/pkoukk/tiktoken-go v0.1.6 // indirect
|
|
golang.org/x/net v0.41.0 // indirect
|
|
golang.org/x/sys v0.33.0 // indirect
|
|
golang.org/x/text v0.26.0 // indirect
|
|
google.golang.org/genproto/googleapis/api v0.0.0-20241209162323-e6fa225c2576 // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20250122153221-138b5a5a4fd4 // indirect
|
|
google.golang.org/grpc v1.70.0 // indirect
|
|
google.golang.org/protobuf v1.36.3 // indirect
|
|
)
|
|
|