Skip to content

Commit d68fb40

Browse files
committed
Updated locations
1 parent 7568765 commit d68fb40

26 files changed

+46
-34
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ test: generate libwhisper libggml
5858
@echo "Running tests (sys)"
5959
@PKG_CONFIG_PATH=${ROOT_PATH}/${BUILD_DIR} ${GO} test -v ./sys/whisper/...
6060
@echo "Running tests (pkg)"
61-
@PKG_CONFIG_PATH=${ROOT_PATH}/${BUILD_DIR} ${GO} test -v ./pkg/whisper/...
61+
@PKG_CONFIG_PATH=${ROOT_PATH}/${BUILD_DIR} ${GO} test -v ./pkg/...
6262

6363
# Build whisper-static-library
6464
libwhisper: submodule

cmd/whisper/server.go

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

66
// Packages
77
"github.com/mutablelogic/go-server/pkg/httpserver"
8-
"github.com/mutablelogic/go-whisper/pkg/whisper/api"
8+
"github.com/mutablelogic/go-whisper/pkg/api"
99
)
1010

1111
type ServerCmd struct {

cmd/whisper/transcribe.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66

77
// Packages
88
whisper "github.com/mutablelogic/go-whisper"
9-
schema "github.com/mutablelogic/go-whisper/pkg/whisper/schema"
10-
segmenter "github.com/mutablelogic/go-whisper/pkg/whisper/segmenter"
11-
task "github.com/mutablelogic/go-whisper/pkg/whisper/task"
9+
schema "github.com/mutablelogic/go-whisper/pkg/schema"
10+
segmenter "github.com/mutablelogic/go-whisper/pkg/segmenter"
11+
task "github.com/mutablelogic/go-whisper/pkg/task"
1212

1313
// Namespace imports
1414
. "github.com/djthorpe/go-errors"
File renamed without changes.

pkg/whisper/api/models.go renamed to pkg/api/models.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"github.com/mutablelogic/go-server/pkg/httprequest"
1313
"github.com/mutablelogic/go-server/pkg/httpresponse"
1414
"github.com/mutablelogic/go-whisper"
15-
"github.com/mutablelogic/go-whisper/pkg/whisper/schema"
15+
"github.com/mutablelogic/go-whisper/pkg/schema"
1616
)
1717

1818
///////////////////////////////////////////////////////////////////////////////
File renamed without changes.

pkg/whisper/api/transcribe.go renamed to pkg/api/transcribe.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ import (
1313
"github.com/mutablelogic/go-server/pkg/httprequest"
1414
"github.com/mutablelogic/go-server/pkg/httpresponse"
1515
"github.com/mutablelogic/go-whisper"
16-
"github.com/mutablelogic/go-whisper/pkg/whisper/schema"
17-
"github.com/mutablelogic/go-whisper/pkg/whisper/segmenter"
18-
"github.com/mutablelogic/go-whisper/pkg/whisper/task"
16+
"github.com/mutablelogic/go-whisper/pkg/schema"
17+
"github.com/mutablelogic/go-whisper/pkg/segmenter"
18+
"github.com/mutablelogic/go-whisper/pkg/task"
1919

2020
// Namespace imports
2121
. "github.com/djthorpe/go-errors"

pkg/whisper/client/client.go renamed to pkg/client/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/mutablelogic/go-client"
1212
"github.com/mutablelogic/go-client/pkg/multipart"
1313
"github.com/mutablelogic/go-server/pkg/httprequest"
14-
"github.com/mutablelogic/go-whisper/pkg/whisper/schema"
14+
"github.com/mutablelogic/go-whisper/pkg/schema"
1515
)
1616

1717
///////////////////////////////////////////////////////////////////////////////
File renamed without changes.

pkg/whisper/pool/contextpool.go renamed to pkg/pool/contextpool.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"fmt"
66

77
// Packages
8-
schema "github.com/mutablelogic/go-whisper/pkg/whisper/schema"
9-
task "github.com/mutablelogic/go-whisper/pkg/whisper/task"
8+
schema "github.com/mutablelogic/go-whisper/pkg/schema"
9+
task "github.com/mutablelogic/go-whisper/pkg/task"
1010

1111
// Namespace imports
1212
. "github.com/djthorpe/go-errors"

0 commit comments

Comments
 (0)