diff --git a/observability/gatewayobs/gen_reporter.go b/observability/gatewayobs/gen_reporter.go index 4f7808701..ca515c36c 100644 --- a/observability/gatewayobs/gen_reporter.go +++ b/observability/gatewayobs/gen_reporter.go @@ -6,7 +6,7 @@ import ( "time" ) -const Version_NI039G8 = true +const Version_IN1F4V8 = true type KeyResolver interface { Resolve(string) @@ -114,6 +114,8 @@ type modelReporter interface { ReportBargeInRequests(v uint64) ReportBargeInRequestTypes(v ModelBargeInRequestTypes) ReportVoiceCloneRequests(v uint64) + ReportEotRequests(v uint64) + ReportRequestTypes(v ModelRequestTypes) } type ModelTx interface { diff --git a/observability/gatewayobs/gen_reporter_noop.go b/observability/gatewayobs/gen_reporter_noop.go index 5086ad87b..8fdd8c6bd 100644 --- a/observability/gatewayobs/gen_reporter_noop.go +++ b/observability/gatewayobs/gen_reporter_noop.go @@ -169,6 +169,8 @@ func (r *noopModelReporter) ReportTtsChars(v uint32) func (r *noopModelReporter) ReportBargeInRequests(v uint64) {} func (r *noopModelReporter) ReportBargeInRequestTypes(v ModelBargeInRequestTypes) {} func (r *noopModelReporter) ReportVoiceCloneRequests(v uint64) {} +func (r *noopModelReporter) ReportEotRequests(v uint64) {} +func (r *noopModelReporter) ReportRequestTypes(v ModelRequestTypes) {} type noopModelTx struct{} @@ -187,3 +189,5 @@ func (t *noopModelTx) ReportTtsChars(v uint32) {} func (t *noopModelTx) ReportBargeInRequests(v uint64) {} func (t *noopModelTx) ReportBargeInRequestTypes(v ModelBargeInRequestTypes) {} func (t *noopModelTx) ReportVoiceCloneRequests(v uint64) {} +func (t *noopModelTx) ReportEotRequests(v uint64) {} +func (t *noopModelTx) ReportRequestTypes(v ModelRequestTypes) {} diff --git a/observability/gatewayobs/gen_source.go b/observability/gatewayobs/gen_source.go index 0e5d9ab64..06b56d90d 100644 --- a/observability/gatewayobs/gen_source.go +++ b/observability/gatewayobs/gen_source.go @@ -9,6 +9,14 @@ const ( ModelBargeInRequestTypesSelfHosted ModelBargeInRequestTypes = "self_hosted" ) +type ModelRequestTypes string + +const ( + ModelRequestTypesUndefined ModelRequestTypes = "" + ModelRequestTypesCloud ModelRequestTypes = "cloud" + ModelRequestTypesSelfHosted ModelRequestTypes = "self_hosted" +) + type Rollup string const (