mirror of
https://github.com/vxcontrol/langchaingo.git
synced 2026-08-24 21:31:28 -04:00
064f09155c
- 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.
19 lines
492 B
Modula-2
19 lines
492 B
Modula-2
module github.com/vxcontrol/langchaingo/examples/perplexity-completion-example
|
|
|
|
go 1.26.5
|
|
|
|
require (
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/vxcontrol/langchaingo v0.1.14-update.1
|
|
)
|
|
|
|
require (
|
|
github.com/dlclark/regexp2 v1.11.5 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/pkoukk/tiktoken-go v0.1.8 // indirect
|
|
github.com/santhosh-tekuri/jsonschema/v6 v6.0.2 // indirect
|
|
golang.org/x/text v0.39.0 // indirect
|
|
)
|
|
|
|
replace github.com/vxcontrol/langchaingo => ../..
|