Noizu.Weaviate.Api.Schema (Noizu Weaviate v0.1.1)

Noizu.Weaviate.Api.Schema is a module that provides functionality for interacting with the Weaviate schema API. This module offers various functions for configuring classes, properties, vector indices, inverted index, stopwords, and replication in the Weaviate schema.

Usage

To use this module, you need to call the respective function with the required parameters.

Example:

class_name = "Product"
class_config = %{class_name: class_name, description: "A class for representing products in Weaviate"}

{:ok, response} = Noizu.Weaviate.Api.Schema.configure_class(class_name, class_config)

Summary

Functions

Link to this function

get(options \\ nil)

@spec get(options :: any()) :: {:ok, any()} | {:error, any()}