generated from milosgajdos/go-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This also removes unneeded stuff that came with go-template Signed-off-by: Milos Gajdos <[email protected]>
- Loading branch information
1 parent
5aef1be
commit 631c347
Showing
5 changed files
with
11 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
// Package embedding provides an implementation for fetching | ||
// vector embeddings from various LLM providers. | ||
package embedding |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package embedding | ||
|
||
// Embedding is a vector embedding. | ||
type Embedding interface { | ||
// Values returns vector embedding values. | ||
Values() []float64 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module github.com/milosgajdos/go-repo-template | ||
module github.com/milosgajdos/go-embedding | ||
|
||
go 1.20 |
This file was deleted.
Oops, something went wrong.