2 Commits

3 changed files with 14 additions and 1 deletions

View File

@@ -1,3 +1,11 @@
## v1.0.0 — 2026-03-17
Stable release. Tracks upstream Python SDK v2.0.4.
No API changes from v0.2.0. This release signals that the SDK surface is
stable and follows Go module semver conventions — breaking changes will only
occur in future major versions.
## v0.2.0 — 2026-03-17
Sync with upstream Python SDK v2.0.4. Upstream reference changed from OpenAPI

View File

@@ -3,6 +3,7 @@
The most complete Go client for the [Mistral AI API](https://docs.mistral.ai/).
<!-- Badges -->
[![Go Reference](https://pkg.go.dev/badge/somegit.dev/vikingowl/mistral-go-sdk.svg)](https://pkg.go.dev/somegit.dev/vikingowl/mistral-go-sdk)
![Go Version](https://img.shields.io/badge/go-1.26-blue)
![License](https://img.shields.io/badge/license-MIT-green)
@@ -218,6 +219,10 @@ if err != nil {
This SDK tracks the [official Mistral Python SDK](https://github.com/mistralai/client-python)
as its upstream reference for API surface and type definitions.
| SDK Version | Upstream Python SDK |
|-------------|---------------------|
| v1.0.0 | v2.0.4 |
## License
[MIT](LICENSE)

View File

@@ -6,7 +6,7 @@ import (
)
// Version is the SDK version string.
const Version = "0.2.0"
const Version = "1.0.0"
const (
defaultBaseURL = "https://api.mistral.ai"