basetenlabs/baseten-go
Go
Captured source
source ↗published Mar 26, 2026seen 5dcaptured 9hhttp 200method plain
basetenlabs/baseten-go
Description: Go SDK for Baseten
Language: Go
License: MIT
Stars: 1
Forks: 0
Open issues: 1
Created: 2026-03-26T15:22:58Z
Pushed: 2026-06-08T17:52:34Z
Default branch: main
Fork: no
Archived: no
README:
Baseten Go SDK
Go SDK for Baseten.
⚠️ Under active development. Nothing should be considered stable at this time.
Usage
Current SDK only has barebones client. Here is usage example of the barebones underlying client:
package main
import (
"context"
"fmt"
"log"
"github.com/basetenlabs/baseten-go/client"
)
func main() {
// Create a management client
cl, err := client.NewManagementClient(client.ManagementClientOptions{
APIKey: "my-api-key",
})
if err != nil {
log.Fatal(err)
}
// List all models
resp, err := cl.API().GetModels(context.Background())
if err != nil {
log.Fatal(err)
}
// Print each model name
for _, m := range resp.Models {
fmt.Println(m.Name)
}
}Notability
notability 1.0/10New Go client library with minimal traction.