Skip to content

Commit 0504a57

Browse files
committed
Updated package name
1 parent ac8c610 commit 0504a57

File tree

40 files changed

+43
-43
lines changed

40 files changed

+43
-43
lines changed

.goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ release:
2020
footer: |
2121
## Full Changelog
2222
23-
https://github.com/TannerKvarfordt/hfapigo/compare/{{ .PreviousTag }}...{{ .Tag }}
23+
https://github.com/Kardbord/hfapigo/compare/{{ .PreviousTag }}...{{ .Tag }}
2424
2525
# modelines #
2626
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# hfapigo
22

3-
[![Unit Tests](https://github.com/TannerKvarfordt/hfapigo/actions/workflows/unit-tests.yml/badge.svg)](https://github.com/TannerKvarfordt/hfapigo/actions/workflows/unit-tests.yml)
4-
[![CodeQL](https://github.com/TannerKvarfordt/hfapigo/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/TannerKvarfordt/hfapigo/actions/workflows/codeql-analysis.yml)
5-
[![Go Report Card](https://goreportcard.com/badge/github.com/TannerKvarfordt/hfapigo)](https://goreportcard.com/report/github.com/TannerKvarfordt/hfapigo)
6-
[![Go Reference](https://pkg.go.dev/badge/github.com/TannerKvarfordt/hfapigo.svg)](https://pkg.go.dev/github.com/TannerKvarfordt/hfapigo)
3+
[![Unit Tests](https://github.com/Kardbord/hfapigo/actions/workflows/unit-tests.yml/badge.svg)](https://github.com/Kardbord/hfapigo/actions/workflows/unit-tests.yml)
4+
[![CodeQL](https://github.com/Kardbord/hfapigo/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/Kardbord/hfapigo/actions/workflows/codeql-analysis.yml)
5+
[![Go Report Card](https://goreportcard.com/badge/github.com/Kardbord/hfapigo)](https://goreportcard.com/report/github.com/Kardbord/hfapigo)
6+
[![Go Reference](https://pkg.go.dev/badge/github.com/Kardbord/hfapigo.svg)](https://pkg.go.dev/github.com/Kardbord/hfapigo)
77

88
(Golang) Go bindings for the [Hugging Face Inference API](https://api-inference.huggingface.co/docs/python/html/index.html).
99
Directly call any model available in the [Model Hub](https://huggingface.co/models).

audio_classification_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"testing"
55
"time"
66

7-
"github.com/TannerKvarfordt/hfapigo"
7+
"github.com/Kardbord/hfapigo"
88
)
99

1010
func TestAudioClassificationRequest(t *testing.T) {

conversational_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"encoding/json"
55
"testing"
66

7-
"github.com/TannerKvarfordt/hfapigo"
7+
"github.com/Kardbord/hfapigo"
88
"github.com/google/go-cmp/cmp"
99
)
1010

examples/audio_classification/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"os"
66
"time"
77

8-
"github.com/TannerKvarfordt/hfapigo"
8+
"github.com/Kardbord/hfapigo"
99
)
1010

1111
const HuggingFaceTokenEnv = "HUGGING_FACE_TOKEN"

examples/conversational/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"syscall"
1010
"time"
1111

12-
"github.com/TannerKvarfordt/hfapigo"
12+
"github.com/Kardbord/hfapigo"
1313
)
1414

1515
const HuggingFaceTokenEnv = "HUGGING_FACE_TOKEN"

examples/fill_mask/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strings"
88
"time"
99

10-
"github.com/TannerKvarfordt/hfapigo"
10+
"github.com/Kardbord/hfapigo"
1111
)
1212

1313
const HuggingFaceTokenEnv = "HUGGING_FACE_TOKEN"

examples/image_classification/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"os"
66

7-
"github.com/TannerKvarfordt/hfapigo"
7+
"github.com/Kardbord/hfapigo"
88
)
99

1010
const HuggingFaceTokenEnv = "HUGGING_FACE_TOKEN"

examples/image_segmentation/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"strings"
1313
"time"
1414

15-
"github.com/TannerKvarfordt/hfapigo"
15+
"github.com/Kardbord/hfapigo"
1616
"golang.org/x/image/font"
1717
"golang.org/x/image/font/basicfont"
1818
"golang.org/x/image/math/fixed"

examples/image_to_text/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"os"
77
"time"
88

9-
"github.com/TannerKvarfordt/hfapigo"
9+
"github.com/Kardbord/hfapigo"
1010
)
1111

1212
const HuggingFaceTokenEnv = "HUGGING_FACE_TOKEN"

0 commit comments

Comments
 (0)