Skip to content

Commit ccd0e35

Browse files
authored
adding url links (#253)
1 parent 98cef78 commit ccd0e35

File tree

5 files changed

+57
-36
lines changed

5 files changed

+57
-36
lines changed

Diff for: generated/go/porter/v1/addons.pb.go

+45-34
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: generated/js/src/porter/v1/addons_pb.d.ts

+7
Original file line numberDiff line numberDiff line change
@@ -780,6 +780,13 @@ export declare class Deepgram extends Message<Deepgram> {
780780
*/
781781
releaseTag?: string;
782782

783+
/**
784+
* model_urls is the list of urls to download deepgram models from
785+
*
786+
* @generated from field: repeated string model_urls = 6;
787+
*/
788+
modelUrls: string[];
789+
783790
constructor(data?: PartialMessage<Deepgram>);
784791

785792
static readonly runtime: typeof proto3;

Diff for: generated/js/src/porter/v1/addons_pb.js

+1
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,7 @@ export const Deepgram = /*@__PURE__*/ proto3.makeMessageType(
223223
{ no: 3, name: "ecr_password", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
224224
{ no: 4, name: "ecr_email", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
225225
{ no: 5, name: "release_tag", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
226+
{ no: 6, name: "model_urls", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
226227
],
227228
);
228229

Diff for: go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ connectrpc.com/connect v1.16.0/go.mod h1:XpZAduBQUySsb4/KO5JffORVkDI4B6/EYPi7N8x
33
github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
44
golang.org/x/net v0.21.0 h1:AQyQV4dYCvJ7vGmJyKki9+PBdyvhkSd8EIx/qb0AYv4=
55
golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ=
6-
google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI=
7-
google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
6+
google.golang.org/protobuf v1.34.1 h1:9ddQBjfCyZPOHPUiPxpYESBLc+T8P3E+Vo4IbKZgFWg=
7+
google.golang.org/protobuf v1.34.1/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=

Diff for: porter/v1/addons.proto

+2
Original file line numberDiff line numberDiff line change
@@ -199,4 +199,6 @@ message Deepgram {
199199
optional string ecr_email = 4;
200200
// release_tag is the version of the deepgram application
201201
optional string release_tag = 5;
202+
// model_urls is the list of urls to download deepgram models from
203+
repeated string model_urls = 6;
202204
}

0 commit comments

Comments
 (0)