Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.ai-stats.phaseo.app/llms.txt

Use this file to discover all available pages before exploring further.

Use the wrapper method:
  • client.CreateTranscription(ctx, req)
import (
  "context"
  "fmt"
  aistats "github.com/AI-Stats/AI-Stats/packages/sdk/sdk-go"
)

client := aistats.New(apiKey, "https://api.phaseo.app/v1")
resp, err := client.CreateTranscription(context.Background(), map[string]interface{}{
  "model": "openai/gpt-4o-transcribe",
  "audio_b64": "data:audio/wav;base64,...",
  "language": "en",
})
if err != nil {
  panic(err)
}
fmt.Println(resp)
Last modified on May 6, 2026