The official Apize SDK for the Go programming language, for adding AI-powered intelligence to your apps.
This module provides access to the Apize APIs from your Go code, handling authentication and the processing of API requests.
import "github.com/apizedev/apize-go"
// Create an Apize client with your API token
client := apize.New("token")
// Summarize some text
ctx := context.Background()
res, _ := client.Summarize(ctx, &apize.SummarizeRequest{
Text: "The quick brown fox jumped over the lazy dog",
})
fmt.Println("Summary: ", res.Summary)
- Read our Quickstart guide here
- Read the API docs here
- Setup your API tokens here