huggingface

package
v1.9.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 21, 2023 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

View Source
const (
	METHOD_GET    = "GET"
	METHOD_POST   = "POST"
	METHOD_PUT    = "PUT"
	METHOD_DELETE = "DELETE"
	METHOD_PATCH  = "PATCH"

	BODY_NONE   = "none"
	BODY_RAW    = "raw"
	BODY_BINARY = "binary"
	BODY_FORM   = "form-data"
	BODY_XWFU   = "x-www-form-urlencoded"

	AUTH_NONE   = "none"
	AUTH_BASIC  = "basic"
	AUTH_BEARER = "bearer"

	HF_API_ADDRESS = "https://api-inference.huggingface.co/models/"

	INPUT_PAIRS_MODE  = "pairs"
	INPUT_TEXT_MODE   = "text"
	INPUT_JSON_MODE   = "json"
	INPUT_BINARY_MODE = "binary"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type Action

type Action struct {
	ModelID string
	Params  Parameters
}

type Connector

type Connector struct {
	ResourceOpts Resource
	ActionOpts   Action
}

func (*Connector) GetMetaInfo

func (h *Connector) GetMetaInfo(resourceOptions map[string]interface{}) (common.MetaInfoResult, error)

func (*Connector) Run

func (h *Connector) Run(resourceOptions map[string]interface{}, actionOptions map[string]interface{}) (common.RuntimeResult, error)

func (*Connector) TestConnection

func (h *Connector) TestConnection(resourceOptions map[string]interface{}) (common.ConnectionResult, error)

func (*Connector) ValidateActionOptions

func (h *Connector) ValidateActionOptions(actionOptions map[string]interface{}) (common.ValidateResult, error)

func (*Connector) ValidateResourceOptions

func (h *Connector) ValidateResourceOptions(resourceOptions map[string]interface{}) (common.ValidateResult, error)

type Inputs added in v1.7.2

type Inputs struct {
	Type    string
	Content interface{}
}

type Pairs added in v1.7.2

type Pairs struct {
	Key   string
	Value interface{}
}

type Parameters added in v1.7.2

type Parameters struct {
	Inputs           Inputs
	WithDetailParams bool
	DetailParams     []Pairs
}

type Resource

type Resource struct {
	Token string `validate:"required"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL