mirror of
https://github.com/ollama/ollama.git
synced 2025-05-11 18:36:41 +02:00
server: return empty slice on empty /api/embed
request (#5713)
* server: return empty slice on empty `/api/embed` request * fix tests
This commit is contained in:
parent
8288ec8824
commit
7ac6d462ec
2 changed files with 7 additions and 3 deletions
|
@ -206,7 +206,7 @@ type EmbedRequest struct {
|
|||
// EmbedResponse is the response from [Client.Embed].
|
||||
type EmbedResponse struct {
|
||||
Model string `json:"model"`
|
||||
Embeddings [][]float32 `json:"embeddings,omitempty"`
|
||||
Embeddings [][]float32 `json:"embeddings"`
|
||||
}
|
||||
|
||||
// EmbeddingRequest is the request passed to [Client.Embeddings].
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue