Add doc.go with package-level godoc for all 15 packages, runnable example functions for chat completion, streaming, embeddings, and error handling, plus build-tagged integration tests for live API validation.
7 lines
264 B
Go
7 lines
264 B
Go
// Package model provides types for Mistral model listing and metadata.
|
|
//
|
|
// Model cards use a sealed interface — [BaseModelCard] for platform models
|
|
// and [FTModelCard] for fine-tuned models. JSON unmarshaling dispatches on
|
|
// the "type" field.
|
|
package model
|