mirror of
https://github.com/vxcontrol/langchaingo.git
synced 2026-08-25 11:10:02 -04:00
5c345a14a7
* Add ids to the return when adding documents in any vectorstore * fixes lint checks * examples: Point vectorstore examples to branch --------- Co-authored-by: Travis Cline <travis.cline@gmail.com>
27 lines
946 B
Modula-2
27 lines
946 B
Modula-2
module github.com/tmc/langchaingo/examples/pinecone-vectorstore-example
|
|
|
|
go 1.21
|
|
|
|
toolchain go1.21.4
|
|
|
|
require (
|
|
github.com/google/uuid v1.3.1
|
|
github.com/tmc/langchaingo v0.1.3-0.20231229003435-adeea7c73769
|
|
)
|
|
|
|
require (
|
|
github.com/dlclark/regexp2 v1.8.1 // indirect
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.2 // indirect
|
|
github.com/pinecone-io/go-pinecone v0.3.0 // indirect
|
|
github.com/pkoukk/tiktoken-go v0.1.2 // indirect
|
|
golang.org/x/net v0.17.0 // indirect
|
|
golang.org/x/sys v0.15.0 // indirect
|
|
golang.org/x/text v0.14.0 // indirect
|
|
google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d // indirect
|
|
google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect
|
|
google.golang.org/grpc v1.59.0 // indirect
|
|
google.golang.org/protobuf v1.31.0 // indirect
|
|
)
|