-
Notifications
You must be signed in to change notification settings - Fork 49
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Currently Matlab access to Ollama only supports text generation, but not the embeddings.
However, adding this functionality should not be hard, here is a snippet:
url = 'http://localhost:11434/api/embeddings';
data = struct(...
'model', 'llama3.1', ...
'prompt', 'Llamas are members of the camelid family');
% Send the HTTP POST request
options = weboptions('MediaType', 'application/json');
response = webwrite(url, data, options)
disp(response.embedding)Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request