openmeter / streaming /defaults.go
Leon4gr45's picture
Upload folder using huggingface_hub (part 6)
d6f631f verified
Raw
History Blame Contribute Delete
355 Bytes
package streaming
import (
"time"
"github.com/openmeterio/openmeter/openmeter/meter"
)
const (
// MinimumWindowSizeDuration is the minimum window size the aggregation can represent.
MinimumWindowSizeDuration = time.Second
// MinimumWindowSize is the minimum window size the aggregation can represent.
MinimumWindowSize = meter.WindowSizeSecond
)