Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

File metadata and controls

31 lines (22 loc) · 1.03 KB

OllamaEmbedRequest

Properties

Name Type Description Notes
model str The model name
input Input
keep_alive KeepAlive [optional]

Example

from cms_client.models.ollama_embed_request import OllamaEmbedRequest

# TODO update the JSON string below
json = "{}"
# create an instance of OllamaEmbedRequest from a JSON string
ollama_embed_request_instance = OllamaEmbedRequest.from_json(json)
# print the JSON string representation of the object
print(OllamaEmbedRequest.to_json())

# convert the object into a dict
ollama_embed_request_dict = ollama_embed_request_instance.to_dict()
# create an instance of OllamaEmbedRequest from a dict
ollama_embed_request_from_dict = OllamaEmbedRequest.from_dict(ollama_embed_request_dict)

[Back to Model list] [Back to API list] [Back to README]