No description
Find a file
2024-12-25 14:27:34 +01:00
.idea Initial commit 2024-12-25 14:27:34 +01:00
api Initial commit 2024-12-25 14:27:34 +01:00
.gitattributes Initial commit 2024-12-25 14:27:34 +01:00
.gitignore Initial commit 2024-12-25 14:27:34 +01:00
go.mod Initial commit 2024-12-25 14:27:34 +01:00
hume.go Initial commit 2024-12-25 14:27:34 +01:00
LICENSE Initial commit 2024-12-25 14:27:34 +01:00
README.md Initial commit 2024-12-25 14:27:34 +01:00

Hume API Go Client

This is a Go client for the Hume API.

DISCLAIMER

This project is in no way affiliated with Hume AI Inc. and is not endorsed by them. This project is provided as-is, without any warranty or support.

Installation

go get github.com/sleepyyui/humetogo

Usage

package main

import (
	"fmt"
	"github.com/sleepyyui/humetogo"
)

func main() {
	api := hume.New("YOUR_API_KEY", "YOUR_API_SECRET")
	tools, err := api.EviGetTools(0, 10, false, "web")
	if err != nil {
		fmt.Println(err)
		return
	}

	fmt.Println(tools)
}