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
299 B
Go
7 lines
299 B
Go
// Package conversation provides types for the Mistral conversations API.
|
|
//
|
|
// Conversations support multi-turn interactions with start, append, and
|
|
// restart operations. Streaming returns typed [Event] values via a sealed
|
|
// interface dispatched by the "type" discriminator.
|
|
package conversation
|