We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5aef1be commit 631c347Copy full SHA for 631c347
doc.go
@@ -0,0 +1,3 @@
1
+// Package embedding provides an implementation for fetching
2
+// vector embeddings from various LLM providers.
3
+package embedding
embedding.go
@@ -0,0 +1,7 @@
+
+// Embedding is a vector embedding.
4
+type Embedding interface {
5
+ // Values returns vector embedding values.
6
+ Values() []float64
7
+}
go.mod
@@ -1,3 +1,3 @@
-module github.com/milosgajdos/go-repo-template
+module github.com/milosgajdos/go-embedding
go 1.20
main.go
main_test.go
0 commit comments