mirror of
https://github.com/ollama/ollama.git
synced 2025-05-11 02:16:36 +02:00
Add embeddings to API (#1773)
This commit is contained in:
parent
b5939008a1
commit
0d6e3565ae
1 changed files with 7 additions and 0 deletions
|
@ -309,6 +309,13 @@ func (c *Client) Heartbeat(ctx context.Context) error {
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
func (c *Client) Embeddings(ctx context.Context, req *EmbeddingRequest) (*EmbeddingResponse, error) {
|
||||||
|
var resp EmbeddingResponse
|
||||||
|
if err := c.do(ctx, http.MethodPost, "/api/embeddings", req, &resp); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return &resp, nil
|
||||||
|
}
|
||||||
|
|
||||||
func (c *Client) CreateBlob(ctx context.Context, digest string, r io.Reader) error {
|
func (c *Client) CreateBlob(ctx context.Context, digest string, r io.Reader) error {
|
||||||
if err := c.do(ctx, http.MethodHead, fmt.Sprintf("/api/blobs/%s", digest), nil, nil); err != nil {
|
if err := c.do(ctx, http.MethodHead, fmt.Sprintf("/api/blobs/%s", digest), nil, nil); err != nil {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue