mirror of
https://github.com/ultravioletrs/cocos.git
synced 2026-08-07 07:14:50 +00:00
8c7d4a76ec
* Update agent.pb.go to include a new field "Provider" in the AlgoRequest struct. Signed-off-by: SammyOina <sammyoina@gmail.com> * fix build Signed-off-by: SammyOina <sammyoina@gmail.com> * Fix undeclared consumer error in agent service The commit fixes an error in the agent service where an undeclared consumer was requesting results in the computation manifest. The error is resolved by adding an error message for the undeclared consumer case. Signed-off-by: SammyOina <sammyoina@gmail.com> --------- Signed-off-by: SammyOina <sammyoina@gmail.com>
52 lines
2.1 KiB
Modula-2
52 lines
2.1 KiB
Modula-2
module github.com/ultravioletrs/cocos-ai
|
|
|
|
go 1.21.3
|
|
|
|
require (
|
|
github.com/caarlos0/env/v7 v7.1.0
|
|
github.com/cenkalti/backoff/v4 v4.2.1
|
|
github.com/digitalocean/go-libvirt v0.0.0-20221205150000-2939327a8519
|
|
github.com/go-kit/kit v0.13.0
|
|
github.com/go-zoo/bone v1.3.0
|
|
github.com/gofrs/uuid v4.4.0+incompatible
|
|
github.com/mainflux/mainflux v0.0.0-20231024165949-8b185d205b6c
|
|
github.com/prometheus/client_golang v1.17.0
|
|
github.com/spf13/cobra v1.7.0
|
|
github.com/spf13/pflag v1.0.5
|
|
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.45.0
|
|
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0
|
|
go.opentelemetry.io/contrib/propagators/jaeger v1.20.0
|
|
go.opentelemetry.io/otel v1.19.0
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.19.0
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.19.0
|
|
go.opentelemetry.io/otel/sdk v1.19.0
|
|
go.opentelemetry.io/otel/trace v1.19.0
|
|
golang.org/x/sync v0.4.0
|
|
google.golang.org/grpc v1.59.0
|
|
google.golang.org/protobuf v1.31.0
|
|
)
|
|
|
|
require (
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
|
github.com/felixge/httpsnoop v1.0.3 // indirect
|
|
github.com/go-kit/log v0.2.1 // indirect
|
|
github.com/go-logfmt/logfmt v0.6.0 // indirect
|
|
github.com/go-logr/logr v1.2.4 // indirect
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.0 // indirect
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
|
|
github.com/prometheus/client_model v0.5.0 // indirect
|
|
github.com/prometheus/common v0.44.0 // indirect
|
|
github.com/prometheus/procfs v0.12.0 // indirect
|
|
go.opentelemetry.io/otel/metric v1.19.0 // indirect
|
|
go.opentelemetry.io/proto/otlp v1.0.0 // indirect
|
|
golang.org/x/net v0.17.0 // indirect
|
|
golang.org/x/sys v0.13.0 // indirect
|
|
golang.org/x/text v0.13.0 // indirect
|
|
google.golang.org/genproto/googleapis/api v0.0.0-20231012201019-e917dd12ba7a // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b // indirect
|
|
)
|