Skip to content

weaviate/weaviate-go-client

Weaviate Go client Weaviate logo

A native Go client for Weaviate.

Usage

⚠️ v5.0.0 cannot be installed due to a malformed go.mod file. Prefer v5.0.1 or higher.

In order to get the Go client v5 issue this command:

$ go get github.com/weaviate/weaviate-go-client/[email protected]

where v5.x.x is the desired Go client v5 version, for example v5.5.0.

Add dependency to your go.mod:

require github.com/weaviate/weaviate-go-client/v5 v5.5.0

Connect to Weaviate on localhost:8080 and fetch meta information

package main

import (
  "context"
  "fmt"

  client "github.com/weaviate/weaviate-go-client/v5/weaviate"
)

func main() {
  config := client.Config{
    Scheme: "http",
    Host:   "localhost:8080",
  }
  c, err := client.NewClient(config)
  if err != nil {
    fmt.Printf("Error occurred %v", err)
    return
  }
  metaGetter := c.Misc().MetaGetter()
  meta, err := metaGetter.Do(context.Background())
  if err != nil {
    fmt.Printf("Error occurred %v", err)
    return
  }
  fmt.Printf("Weaviate meta information\n")
  fmt.Printf("hostname: %s version: %s\n", meta.Hostname, meta.Version)
  fmt.Printf("enabled modules: %+v\n", meta.Modules)
}

Documentation

Support

Contributing

Build Status

Build Status