Skip to content

Commit 22ef898

Browse files
ashwinpvgSkCQ
authored andcommitted
Initial skeleton code for supporting RAG retrieval services (history-rag)
- Design doc: go/history-rag-prod - The implementation of the apis will be added in upcoming CLs. - Set up a new service that supports both GRPC and Http and add the initial skeleton protos. Bug: b/455899915 Change-Id: Ia702c3cfa73309a5c10e314ed54e33b0ec602488 Reviewed-on: https://skia-review.googlesource.com/c/buildbot/+/1086384 Commit-Queue: Ashwin Verleker <[email protected]> Reviewed-by: Prakhar Asthana <[email protected]>
1 parent e2e0480 commit 22ef898

File tree

17 files changed

+2530
-47
lines changed

17 files changed

+2530
-47
lines changed

go.mod

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ require (
1515
cloud.google.com/go/pubsub v1.47.0
1616
cloud.google.com/go/redis v1.18.0
1717
cloud.google.com/go/secretmanager v1.14.5
18+
cloud.google.com/go/spanner v1.76.1
1819
cloud.google.com/go/storage v1.50.0
1920
contrib.go.opencensus.io/exporter/stackdriver v0.13.4
2021
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.19.1
@@ -39,7 +40,7 @@ require (
3940
github.com/go-chi/chi/v5 v5.0.8
4041
github.com/go-python/gpython v0.0.3
4142
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8
42-
github.com/golang/mock v1.6.0
43+
github.com/golang/mock v1.7.0-rc.1
4344
github.com/golang/protobuf v1.5.4
4445
github.com/google/go-cmp v0.7.0
4546
github.com/google/go-github/v29 v29.0.3
@@ -131,6 +132,7 @@ require (
131132
cloud.google.com/go/container v1.42.2 // indirect
132133
cloud.google.com/go/longrunning v0.6.6 // indirect
133134
cloud.google.com/go/trace v1.11.3 // indirect
135+
github.com/GoogleCloudPlatform/grpc-gcp-go/grpcgcp v1.5.2 // indirect
134136
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.25.0 // indirect
135137
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.50.0 // indirect
136138
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.50.0 // indirect

go.sum

Lines changed: 1255 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)