-
Notifications
You must be signed in to change notification settings - Fork 95
Add Embedder Component #3526
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Add Embedder Component #3526
Changes from all commits
2381dc7
bbe40e9
10bbb60
73222d6
c810873
9efe795
b674f38
2b91e5e
be7a9c0
4a55076
400dc85
f1743b0
fcd6781
87dc7f7
d12259a
12a6265
60ca0c1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -193,6 +193,9 @@ apis/grpc/v1/agent/sidecar/sidecar.pb.go | |
| apis/grpc/v1/agent/sidecar/sidecar_vtproto.pb.go | ||
| apis/grpc/v1/discoverer/discoverer.pb.go | ||
| apis/grpc/v1/discoverer/discoverer_vtproto.pb.go | ||
| apis/grpc/v1/embedder/embedder.pb.go | ||
| apis/grpc/v1/embedder/embedder.pb.json.go | ||
| apis/grpc/v1/embedder/embedder_vtproto.pb.go | ||
| apis/grpc/v1/filter/egress/egress_filter.pb.go | ||
| apis/grpc/v1/filter/egress/egress_filter_vtproto.pb.go | ||
| apis/grpc/v1/filter/ingress/ingress_filter.pb.go | ||
|
|
@@ -241,6 +244,7 @@ apis/grpc/v1/vald/vald.go | |
| apis/proto/v1/agent/core/agent.proto | ||
| apis/proto/v1/agent/sidecar/sidecar.proto | ||
| apis/proto/v1/discoverer/discoverer.proto | ||
| apis/proto/v1/embedder/embedder.proto | ||
|
Matts966 marked this conversation as resolved.
|
||
| apis/proto/v1/filter/egress/egress_filter.proto | ||
| apis/proto/v1/filter/ingress/ingress_filter.proto | ||
| apis/proto/v1/meta/meta.proto | ||
|
|
@@ -265,6 +269,7 @@ apis/proto/v1/vald/upsert.proto | |
| apis/swagger/v1/agent/core/agent.swagger.json | ||
| apis/swagger/v1/agent/sidecar/sidecar.swagger.json | ||
| apis/swagger/v1/discoverer/discoverer.swagger.json | ||
| apis/swagger/v1/embedder/embedder.swagger.json | ||
| apis/swagger/v1/filter/egress/egress_filter.swagger.json | ||
| apis/swagger/v1/filter/ingress/ingress_filter.swagger.json | ||
| apis/swagger/v1/meta/meta.swagger.json | ||
|
|
@@ -606,6 +611,9 @@ cmd/tools/cli/benchmark/core/main_test.go | |
| cmd/tools/cli/vdctl/doc.go | ||
| cmd/tools/cli/vdctl/main.go | ||
| cmd/tools/cli/vdctl/main_test.go | ||
| cmd/tools/embedder/doc.go | ||
| cmd/tools/embedder/main.go | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Several new embedder implementation files ship without matching unit tests. From this manifest, As per coding guidelines: "Each implementation file must come with its unit test file with Also applies to: 2287-2305 🤖 Prompt for AI Agents |
||
| cmd/tools/embedder/sample.yaml | ||
| codecov.yaml | ||
| design/Vald Architecture Assets.drawio | ||
| design/Vald Architecture Dataflow.drawio | ||
|
|
@@ -836,6 +844,7 @@ hack/tools/deadlink/main.go | |
| hack/tools/kvsdb/main.go | ||
| hack/tools/metrics/main.go | ||
| hack/tools/metrics/main_test.go | ||
| hack/tools/openai-embedding-mock/main.go | ||
| internal/backoff/backoff.go | ||
| internal/backoff/backoff_test.go | ||
| internal/backoff/context.go | ||
|
|
@@ -2271,6 +2280,29 @@ pkg/tools/benchmark/operator/service/option_test.go | |
| pkg/tools/benchmark/operator/usecase/benchmarkd.go | ||
| pkg/tools/benchmark/operator/usecase/benchmarkd_test.go | ||
| pkg/tools/benchmark/operator/usecase/doc.go | ||
| pkg/tools/embedder/README.md | ||
| pkg/tools/embedder/config/config.go | ||
| pkg/tools/embedder/config/config_test.go | ||
| pkg/tools/embedder/handler/doc.go | ||
| pkg/tools/embedder/handler/grpc/handler.go | ||
| pkg/tools/embedder/handler/grpc/option.go | ||
| pkg/tools/embedder/handler/rest/handler.go | ||
| pkg/tools/embedder/handler/rest/handler_test.go | ||
| pkg/tools/embedder/handler/rest/option.go | ||
| pkg/tools/embedder/handler/rest/option_test.go | ||
| pkg/tools/embedder/router/option.go | ||
| pkg/tools/embedder/router/option_test.go | ||
| pkg/tools/embedder/router/router.go | ||
| pkg/tools/embedder/router/router_test.go | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [file name cspell] reported by reviewdog 🐶 |
||
| pkg/tools/embedder/service/doc.go | ||
| pkg/tools/embedder/service/embedder.go | ||
| pkg/tools/embedder/service/llm.go | ||
| pkg/tools/embedder/service/llm_option.go | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [file name cspell] reported by reviewdog 🐶 |
||
| pkg/tools/embedder/service/meta.go | ||
| pkg/tools/embedder/service/option.go | ||
| pkg/tools/embedder/usecase/agentd.go | ||
| pkg/tools/embedder/usecase/doc.go | ||
| pkg/tools/embedder/usecase/embedder.go | ||
| renovate.json | ||
| rust/Cargo.lock | ||
| rust/Cargo.toml | ||
|
|
@@ -2328,6 +2360,10 @@ rust/libs/proto/src/core/v1/mod.rs | |
| rust/libs/proto/src/discoverer/mod.rs | ||
| rust/libs/proto/src/discoverer/v1/discoverer.v1.tonic.rs | ||
| rust/libs/proto/src/discoverer/v1/mod.rs | ||
| rust/libs/proto/src/embedder.v1.tonic.rs | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [file name cspell] reported by reviewdog 🐶 |
||
| rust/libs/proto/src/embedder/v1/embedder.v1.rs | ||
| rust/libs/proto/src/embedder/v1/embedder.v1.serde.rs | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [file name cspell] reported by reviewdog 🐶 |
||
| rust/libs/proto/src/embedder/v1/embedder.v1.tonic.rs | ||
| rust/libs/proto/src/filter/egress/mod.rs | ||
| rust/libs/proto/src/filter/egress/v1/filter.egress.v1.tonic.rs | ||
| rust/libs/proto/src/filter/egress/v1/mod.rs | ||
|
|
@@ -2394,6 +2430,7 @@ tests/e2e/pkg/agent/core/ngt/service/ngt_e2s_test.go | |
| tests/e2e/sidecar/sidecar_test.go | ||
| tests/performance/max_vector_dim_test.go | ||
| tests/v2/e2e/assets/agent_crud.yaml | ||
| tests/v2/e2e/assets/embedder.yaml | ||
| tests/v2/e2e/assets/index_correction.yaml | ||
| tests/v2/e2e/assets/multi_crud.yaml | ||
| tests/v2/e2e/assets/readreplica.yaml | ||
|
|
@@ -2405,6 +2442,7 @@ tests/v2/e2e/config/enums.go | |
| tests/v2/e2e/crud/agent_test.go | ||
| tests/v2/e2e/crud/crud_test.go | ||
| tests/v2/e2e/crud/dataset_test.go | ||
| tests/v2/e2e/crud/embedder_test.go | ||
| tests/v2/e2e/crud/grpc_test.go | ||
| tests/v2/e2e/crud/index_test.go | ||
| tests/v2/e2e/crud/kubernetes_test.go | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.