Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion schema/example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func validate(t *testing.T, name string) {
}
}

// renderer allows one to incercept fenced blocks in markdown documents.
// renderer allows one to intercept fenced blocks in markdown documents.
type renderer struct {
blackfriday.Renderer
fn func(text []byte, lang string)
Expand Down
8 changes: 4 additions & 4 deletions specs-go/v1/mediatype.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,16 @@ const (
// MediaTypeModelWeightZstd is the media type used for zstd compressed model weights.
MediaTypeModelWeightZstd = "application/vnd.cncf.model.weight.v1.tar+zstd"

// MediaTypeModelWeightConfigRaw is the media type used for an unarchived, uncompressed model weights, including files like `tokenizer.json`, `config.json`, etc.
// MediaTypeModelWeightConfigRaw is the media type used for an unarchived, uncompressed configuration of the model weights, including files like `tokenizer.json`, etc.
MediaTypeModelWeightConfigRaw = "application/vnd.cncf.model.weight.config.v1.raw"

// MediaTypeModelConfig specifies the media type for configuration of the model weights, including files like `tokenizer.json`, `config.json`, etc.
// MediaTypeModelWeightConfig specifies the media type for configuration of the model weights, including files like `tokenizer.json`, etc.
MediaTypeModelWeightConfig = "application/vnd.cncf.model.weight.config.v1.tar"

// MediaTypeModelConfigGzip specifies the media type for gzipped configuration of the model weights, including files like `tokenizer.json`, `config.json`, etc.
// MediaTypeModelWeightConfigGzip specifies the media type for gzipped configuration of the model weights, including files like `tokenizer.json`, etc.
MediaTypeModelWeightConfigGzip = "application/vnd.cncf.model.weight.config.v1.tar+gzip"

// MediaTypeModelConfigZstd specifies the media type for zstd compressed configuration of the model weights, including files like `tokenizer.json`, `config.json`, etc.
// MediaTypeModelWeightConfigZstd specifies the media type for zstd compressed configuration of the model weights, including files like `tokenizer.json`, etc.
MediaTypeModelWeightConfigZstd = "application/vnd.cncf.model.weight.config.v1.tar+zstd"

// MediaTypeModelDocRaw is the media type used for an unarchived, uncompressed model documentation, including documentation files like `README.md`, `LICENSE`, etc.
Expand Down
Loading