| Name | Type | Description | Notes |
|---|---|---|---|
| model | str | The model name | |
| input | Input | ||
| keep_alive | KeepAlive | [optional] |
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)